diff options
| author | Nick Merwin <[email protected]> | 2019-11-25 13:15:38 -0800 |
|---|---|---|
| committer | Nick Merwin <[email protected]> | 2019-11-25 13:15:38 -0800 |
| commit | 3d825344c0600477bd1e1716c54712fd3820bf8d (patch) | |
| tree | 689b5e1f5deb8a739912ddba2ca7cb1d6577d64f | |
| parent | b1f795044d20ea121aed23b6590ebe8b631d3dd3 (diff) | |
| download | node-coveralls-3d825344c0600477bd1e1716c54712fd3820bf8d.tar.xz node-coveralls-3d825344c0600477bd1e1716c54712fd3820bf8d.zip | |
use Coveralls GitHub actioncoveralls-action
| -rw-r--r-- | .github/workflows/test.yml | 10 |
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 }} |
