Skip to content

Commit 63e8704

Browse files
test: Add Node 20 to CI matrix (#3686)
1 parent ac69571 commit 63e8704

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
@@ -8,6 +8,10 @@ on:
88
jobs:
99
tests:
1010
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
node: [20, 24]
14+
continue-on-error: ${{ matrix.node == 24 }}
1115
steps:
1216
- name: Checkout
1317
uses: actions/checkout@v4
@@ -16,7 +20,7 @@ jobs:
1620
- name: Setup Nodejs
1721
uses: actions/setup-node@v4
1822
with:
19-
node-version-file: '.nvmrc'
23+
node-version: ${{ matrix.node }}
2024
- name: Install dependencies
2125
run: npm ci
2226
- name: Check Types

0 commit comments

Comments
 (0)