Skip to content

Commit 61880ef

Browse files
test: Add Node 24 to CI matrix
1 parent 9b2a18f commit 61880ef

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
@@ -9,6 +9,10 @@ on:
99
jobs:
1010
tests:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node: [20, 24]
15+
continue-on-error: ${{ matrix.node == 24 }}
1216
steps:
1317
- name: Checkout
1418
uses: actions/checkout@v4
@@ -17,7 +21,7 @@ jobs:
1721
- name: Setup Nodejs
1822
uses: actions/setup-node@v4
1923
with:
20-
node-version-file: '.nvmrc'
24+
node-version: ${{ matrix.node }}
2125
- name: Install dependencies
2226
run: npm ci
2327
- name: Lint

0 commit comments

Comments
 (0)