fix(deps): update dependency @swc/core to v1.10.2 #3634
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main, dev] | |
tags-ignore: | |
- '*@*' | |
pull_request: | |
branches: [main, dev] | |
tags-ignore: | |
- '*@*' | |
workflow_call: | |
inputs: | |
force: | |
default: false | |
type: boolean | |
description: Force the workflow to run | |
required: false | |
jobs: | |
test: | |
if: ${{ (!contains(github.event.head_commit.message, 'skip-ci') && !startsWith(github.event.head_commit.message, 'release:')) || inputs.force }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
node-version: [18.x, 20.x] | |
runs-on: ${{ matrix.os }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-dependencies | |
with: | |
path: | | |
${{ github.workspace }}/.pnpm-store | |
${{ github.workspace }}/packages/builder/test/mock/node_modules | |
${{ github.workspace }}/packages/plugin-vite/test/mock/node_modules | |
${{ github.workspace }}/packages/runner/test/mock/backend/node_modules | |
key: ${{ runner.os }}-${{ matrix.node-version }}-test-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.node-version }}-test-${{ env.cache-name }}- | |
${{ runner.os }}-${{ matrix.node-version }}-test- | |
${{ runner.os }}- | |
- name: Install pnpm | |
run: npm i -g pnpm | |
- name: Set pnpm store path | |
run: pnpm config set store-dir .pnpm-store | |
- name: Install deps | |
run: pnpm i --no-frozen-lockfile | |
# Runs a set of commands using the runners shell | |
- name: Test | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: pnpm test |