Skip to content

Commit 351fc80

Browse files
committed
ci: enable tests against node 16, 18 and 20
1 parent 5524f8a commit 351fc80

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@ on:
1111
jobs:
1212
ci:
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
node: [16, 18, 20]
1417
steps:
1518
- uses: actions/checkout@v3
1619
- run: corepack enable
1720
- uses: actions/setup-node@v3
1821
with:
19-
node-version: 16
22+
node-version: ${{ matrix.node }}
2023
cache: "pnpm"
2124
- run: pnpm install
2225
- run: pnpm lint

0 commit comments

Comments
 (0)