diff options
| author | Nick Merwin <[email protected]> | 2020-04-23 14:46:34 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-04-23 14:46:34 -0700 |
| commit | 1615297a56f1eaa962ccf794c7b3596f8a146660 (patch) | |
| tree | e7f3a0d6f2d476aef9c22be29095cb8343fcb476 /.github/workflows | |
| parent | 3647673f9e43ea973ebed65a891e897415cb2389 (diff) | |
| download | node-coveralls-1615297a56f1eaa962ccf794c7b3596f8a146660.tar.xz node-coveralls-1615297a56f1eaa962ccf794c7b3596f8a146660.zip | |
GH Action workflow update (#287)
* parallel
* flag-name
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f62d68e..9fca48c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,3 +39,15 @@ jobs: uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} + flag-name: ${{matrix.os}}-node-${{ matrix.node }} + parallel: true + + finish: + needs: run + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.github_token }} + parallel-finished: true |
