Skip to content

Commit

Permalink
ci: fix coverage reports
Browse files Browse the repository at this point in the history
  • Loading branch information
nodkz committed Aug 21, 2020
1 parent cab5393 commit 66aaf12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: yarn build

publish:
# if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta'
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta'
needs: [tests]
runs-on: ubuntu-latest
steps:
Expand All @@ -46,4 +46,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Send codecov.io stats
run: bash <(curl -s https://codecov.io/bash);
run: yarn coverage && bash <(curl -s https://codecov.io/bash);

0 comments on commit 66aaf12

Please sign in to comment.