Skip to content

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexox committed Feb 24, 2023
1 parent 2bb4591 commit 3c1bf50
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:

- uses: actions/checkout@v1

- name: Use Node.js 10.x
uses: actions/setup-node@v1
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 10.x
node-version: 16.x

- name: npm install, make test-coverage
run: |
Expand Down Expand Up @@ -79,11 +79,11 @@ jobs:
- 1
- 2
steps:
- uses: actions/checkout@master
- name: Use Node.js 10.x
uses: actions/setup-node@master
- uses: actions/checkout@3
- name: Use Node.js 16.x
uses: actions/setup-node@3
with:
version: 10.x
node-version: 16.x

- name: npm install
run: npm install
Expand All @@ -99,13 +99,15 @@ jobs:

finish:
needs: test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
carryforward: "run-1,run-2"
```

The "Coveralls Finished" step needs to run after all other steps have completed; it will let Coveralls know that all jobs in the build are done and aggregate coverage calculation can be calculated and notifications sent.
Expand Down

0 comments on commit 3c1bf50

Please sign in to comment.