ci: added jobs to coveralls workflow
This commit is contained in:
parent
0798a37bb0
commit
6c9f5b2ec4
27
.github/workflows/coveralls.yml
vendored
27
.github/workflows/coveralls.yml
vendored
@ -3,3 +3,30 @@ name: Coveralls
|
|||||||
on:
|
on:
|
||||||
workflow_run:
|
workflow_run:
|
||||||
workflows: [Linux]
|
workflows: [Linux]
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
|
- requested
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
coveralls:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
NODE_COVERALLS_DEBUG: 1
|
||||||
|
steps:
|
||||||
|
- name: Upload Coverage to Coveralls
|
||||||
|
uses: coverallsapp/github-action@master
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
path-to-lcov: ./coverage.info
|
||||||
|
parallel: true
|
||||||
|
|
||||||
|
finish:
|
||||||
|
needs: coveralls
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Coveralls Finished
|
||||||
|
uses: coverallsapp/github-action@master
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
parallel-finished: true
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user