Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-11-18 22:03:43 +0300
committerGitHub <noreply@github.com>2019-11-18 22:03:43 +0300
commit099860d727f0ed2ab039ccac48e2ead61083427c (patch)
treedfe5662e1932770af12a89f4af6c91619bf54753 /.github
parenteedf568b005d1f14985a3b315cabf004216ba053 (diff)
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')
-rw-r--r--.github/workflows/test.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 96d74522ca..8fa00e5216 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"