aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNick Merwin <[email protected]>2019-11-25 13:15:38 -0800
committerNick Merwin <[email protected]>2019-11-25 13:15:38 -0800
commit3d825344c0600477bd1e1716c54712fd3820bf8d (patch)
tree689b5e1f5deb8a739912ddba2ca7cb1d6577d64f /.github
parentb1f795044d20ea121aed23b6590ebe8b631d3dd3 (diff)
downloadnode-coveralls-coveralls-action.tar.xz
node-coveralls-coveralls-action.zip
use Coveralls GitHub actioncoveralls-action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index e8179c8..1dda40f 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -29,7 +29,9 @@ jobs:
run: npm install # switch to `npm ci` when Node.js 6 support is dropped
- name: Run tests
- run: npm run test-coveralls
- env:
- COVERALLS_REPO_TOKEN: "${{ secrets.COVERALLS_REPO_TOKEN }}"
- COVERALLS_GIT_BRANCH: "${{ github.ref }}"
+ run: npm run test-cov
+
+ - name: Coveralls
+ uses: coverallsapp/github-action@master
+ with:
+ github-token: ${{ secrets.GITHUB_TOKEN }}