From 099860d727f0ed2ab039ccac48e2ead61083427c Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 18 Nov 2019 21:03:43 +0200 Subject: Switch to the Coveralls Action (#29478) This is the official way of using Coveralls with Actions. Also this brings back Coveralls for PRs. --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '.github') 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" -- cgit v1.2.3