diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37a1f79..d24ca07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,4 +36,15 @@ jobs: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} flag-name: node-${{ matrix.node-version }} parallel: true + coveralls-finish: + name: Coveralls Webhook + needs: build + if: needs.build.result == 'success' + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@v2.2.3 + with: + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + parallel-finished: true