Skip to content

Commit b97ca32

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

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,19 @@ 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
1519
with:
1620
fetch-depth: 0
17-
- name: Setup Nodejs
21+
- name: Setup Nodejs24
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)