Skip to content

Commit

Permalink
test against node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikzogg committed Jan 9, 2024
1 parent b7213e6 commit 72d65f3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
with:
node-version: '16'
- run: npm install
- run: npm test
node18:
name: Node 18
runs-on: ubuntu-22.04
Expand All @@ -31,8 +32,28 @@ jobs:
with:
node-version: '18'
- run: npm install
- run: npm test
node20:
name: Node 20
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: checkout node
uses: actions/setup-node@v3
with:
node-version: '20'
- run: npm install
- run: npm run lint
- run: npm run cs
- run: npm test -- --coverage --no-cache
- run: npm run infection
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
- name: coveralls.io
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: sonarcloud.io
uses: sonarsource/sonarcloud-github-action@master
env:
Expand Down

0 comments on commit 72d65f3

Please sign in to comment.