Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jan 18, 2024
1 parent 818c407 commit 599feec
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,17 @@ on: [push, pull_request]
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 17
- lts/*
- latest
steps:
- uses: actions/setup-node@v1
- uses: actions/setup-node@v4
with:
node-version: '16'
- uses: actions/checkout@v2
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v4
- run: npm install
- run: npm test
- run: npm run lint
- run: npm test

0 comments on commit 599feec

Please sign in to comment.