Skip to content

Commit da1e9ba

Browse files
committed
ci: update
1 parent bf2fd34 commit da1e9ba

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ jobs:
3131

3232
- name: test
3333
run: |
34-
if [ "${{ matrix.node }}" == "22" ] || [ "${{ matrix.node }}" == "24" ]; 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)