Skip to content

Commit ee9cfbc

Browse files
committed
ci: test matrix
1 parent 4090881 commit ee9cfbc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ on: [push, pull_request]
55
jobs:
66
test:
77
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
node: [ 20, "lts/*" ]
812
steps:
913
- uses: actions/checkout@v4
1014
- uses: actions/setup-node@v4
1115
with:
12-
node-version: 18.17
16+
node-version: ${{ matrix.node }}
1317
- run: npm ci
1418
- run: yarn test
1519
- name: Codecov (unit tests)

0 commit comments

Comments
 (0)