Skip to content

Commit bc251a6

Browse files
authored
test: Add Node 24 to CI matrix (#1564)
1 parent 632e962 commit bc251a6

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,14 +11,18 @@ 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
1721
uses: actions/checkout@v4
1822
- name: Setup Nodejs
1923
uses: actions/setup-node@v4
2024
with:
21-
node-version-file: '.nvmrc'
25+
node-version: ${{ matrix.node }}
2226

2327
- name: Install Dependencies
2428
run: npm ci

0 commit comments

Comments
 (0)