Skip to content

Commit b647f7c

Browse files
authored
ci: test on Node.js 24 (#307)
1 parent 337129d commit b647f7c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest]
20-
node: [14, 16, 18, 20, 22]
20+
node: [14, 16, 18, 20, 22, 24]
2121
steps:
2222
- uses: actions/checkout@v4
2323
with:
@@ -31,8 +31,9 @@ jobs:
3131

3232
- name: test
3333
run: |
34-
if [ "${{ matrix.node }}" == "22" ]; then
34+
case "${{ matrix.node }}" in "20"|"22"|"24")
3535
npm run test:node22
36-
else
37-
npm test
38-
fi
36+
;;*)
37+
npm test
38+
;;
39+
esac

0 commit comments

Comments
 (0)