Skip to content

Commit

Permalink
coveralls corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
kkamkou committed Jan 12, 2024
1 parent 3903828 commit e89fd55
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:

jobs:
test:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
name: node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
matrix:
node: ['lts/*', '8', '10', '12', '14', '16', '18', '20']
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
Expand All @@ -28,10 +28,19 @@ jobs:

- run: npm test

- name: Coveralls
- name: coveralls parallel
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.COVERALLS_REPO_TOKEN }}
flag-name: ${{matrix.os}}-node-${{ matrix.node }}
parallel: true

finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: coveralls publish
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.COVERALLS_REPO_TOKEN }}
parallel-finished: true

0 comments on commit e89fd55

Please sign in to comment.