diff options
| author | XhmikosR <[email protected]> | 2019-11-18 21:03:43 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-11-18 21:03:43 +0200 |
| commit | 099860d727f0ed2ab039ccac48e2ead61083427c (patch) | |
| tree | dfe5662e1932770af12a89f4af6c91619bf54753 /.github/workflows | |
| parent | eedf568b005d1f14985a3b315cabf004216ba053 (diff) | |
| download | bootstrap-099860d727f0ed2ab039ccac48e2ead61083427c.tar.xz bootstrap-099860d727f0ed2ab039ccac48e2ead61083427c.zip | |
Switch to the Coveralls Action (#29478)
This is the official way of using Coveralls with Actions. Also this brings back Coveralls for PRs.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 96d74522c..8fa00e521 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,8 +48,8 @@ jobs: BROWSER_STACK_USERNAME: "${{ secrets.BROWSER_STACK_USERNAME }}" - name: Run Coveralls - run: npm run coveralls - if: matrix.node == 10 && github.repository == 'twbs/bootstrap' && github.event_name == 'push' - env: - COVERALLS_REPO_TOKEN: "${{ secrets.COVERALLS_REPO_TOKEN }}" - COVERALLS_GIT_BRANCH: "${{ github.ref }}" + uses: coverallsapp/github-action@master + if: matrix.node == 10 + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" + path-to-lcov: "./js/coverage/lcov.info" |
