Change to coveralls action (#8029)

* Change to coveralls action

* Parallel coveralls
This commit is contained in:
Jukka Kurkela 2020-11-10 17:21:38 +02:00 committed by GitHub
parent 3f413c7bcf
commit 610745938b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,20 @@ jobs:
npm run docs
npm run typedoc
npm pack
- name: Publish Test Results
run: cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
shell: bash
continue-on-error: true
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.os }}
parallel: true
finish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true