Skip to content

Commit

Permalink
Merge pull request #18 from rdfjs-base/ci-coveralls
Browse files Browse the repository at this point in the history
chore: switched to coveralls
  • Loading branch information
bergos authored Dec 7, 2024
2 parents efbe8cf + b352148 commit d617260
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,31 @@ on:
- push
jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
node:
- '18'
- '20'
- '22'
- '23'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v5
- uses: coverallsapp/github-action@v2
with:
flag-name: run Node v${{ matrix.node }}
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
finally:
needs: test
runs-on: ubuntu-24.04
steps:
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true

0 comments on commit d617260

Please sign in to comment.