Skip to content

Commit d20ee6c

Browse files
authored
test: Add Node 20 to CI matrix (#160)
1 parent 78245b3 commit d20ee6c

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
@@ -9,6 +9,10 @@ on:
99
jobs:
1010
tests:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node: [18, 20]
15+
continue-on-error: ${{ matrix.node == 20 }}
1216
steps:
1317
- name: Checkout
1418
uses: actions/checkout@v4
@@ -19,7 +23,7 @@ jobs:
1923
- name: Setup Nodejs
2024
uses: actions/setup-node@v4
2125
with:
22-
node-version: ${{ env.NODE_VER }}
26+
node-version: ${{ matrix.node }}
2327
- name: Install dependencies
2428
run: npm ci
2529
- name: Lint

0 commit comments

Comments
 (0)