Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 12 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ jobs:
target: "aarch64-apple-darwin"
architecture: "arm64"
node:
- "18"
- "20"
- "22"
- '20'
- '24'
- '26'
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down Expand Up @@ -207,15 +207,9 @@ jobs:
target: aarch64-pc-windows-msvc
architecture: arm64
node:
- "18"
- "20"
- "22"
exclude:
- settings:
host: windows-latest
target: aarch64-pc-windows-msvc
arch: arm64
node: "18"
- '20'
- '24'
- '26'
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down Expand Up @@ -251,9 +245,9 @@ jobs:
- aarch64-unknown-linux-gnu
- aarch64-unknown-linux-musl
node:
- "18"
- "20"
- "22"
- "24"
- "26"
runs-on: ${{ contains(matrix.target, 'aarch64') && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down Expand Up @@ -307,4 +301,7 @@ jobs:
with:
image: ${{ steps.docker.outputs.IMAGE }}
options: '-v ${{ github.workspace }}:${{ github.workspace }} -w ${{ github.workspace }} --platform ${{ steps.docker.outputs.PLATFORM }}'
run: yarn vitest run
run: |
npm install -g corepack
yarn install
yarn vitest run
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.20.0
24.15.0
Loading