Skip to content

Commit 18b6e1d

Browse files
test: Add Node 24 to CI matrix
1 parent 9e4faf1 commit 18b6e1d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
jobs:
1212
tests:
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
node: [20, 24]
17+
continue-on-error: ${{ matrix.node == 24 }}
1418

1519
steps:
1620
- name: Checkout
@@ -19,7 +23,7 @@ jobs:
1923
- name: Setup Nodejs
2024
uses: actions/setup-node@v4
2125
with:
22-
node-version-file: '.nvmrc'
26+
node-version: ${{ matrix.node }}
2327

2428
- name: Install dependencies
2529
run: npm ci

0 commit comments

Comments
 (0)