Skip to content

Commit fc095c8

Browse files
authored
test: Add Node 20 to CI matrix (#301)
1 parent c84da02 commit fc095c8

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,13 +11,17 @@ on:
1111
jobs:
1212
tests:
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
node: [18, 20]
17+
continue-on-error: ${{ matrix.node == 20 }}
1418
steps:
1519
- name: Checkout
1620
uses: actions/checkout@v4
1721
- name: Setup Nodejs
1822
uses: actions/setup-node@v4
1923
with:
20-
node-version-file: '.nvmrc'
24+
node-version: ${{ matrix.node }}
2125

2226
- name: Install Dependencies
2327
run: npm ci

0 commit comments

Comments
 (0)