Skip to content

Commit

Permalink
build: continue running coveralls on master (#1583)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Mar 8, 2020
1 parent ff2eebf commit adab927
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/coverage.yaml
@@ -0,0 +1,19 @@
on:
push:
branches:
- master
name: coverage
jobs:
coveralls:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 13
- run: npm install
- run: npm test
- run: c8 report --reporter=text-lcov | npx coveralls
env:
COVERALLS_REPO_TOKEN: "${{ secrets.COVERALLS_REPO_TOKEN }}"
COVERALLS_GIT_BRANCH: "${{ github.ref }}"

0 comments on commit adab927

Please sign in to comment.