Skip to content

Commit a9924b9

Browse files
test: Add Node 24 to CI matrix
1 parent 77fcc83 commit a9924b9

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/validate.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,20 @@ 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
- uses: actions/checkout@v4
1418
- uses: actions/setup-node@v4
1519
with:
16-
node-version-file: '.nvmrc'
20+
node-version: ${{ matrix.node }}
1721
- run: make validate.ci
1822
- name: Archive code coverage results
1923
uses: actions/upload-artifact@v4
2024
with:
21-
name: code-coverage-report
25+
name: code-coverage-report-node-${{ matrix.node }}
2226
path: coverage/*.*
2327
coverage:
2428
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)