Skip to content

Commit

Permalink
ci: use recent node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode authored Nov 29, 2024
1 parent 006836f commit 7483503
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, "lts/*"]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
- run: npm run lint

0 comments on commit 7483503

Please sign in to comment.