Skip to content

Commit

Permalink
ci: enable tests against node 16, 18 and 20
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jun 6, 2023
1 parent 5524f8a commit 351fc80
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ on:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: ${{ matrix.node }}
cache: "pnpm"
- run: pnpm install
- run: pnpm lint
Expand Down

0 comments on commit 351fc80

Please sign in to comment.