We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66aaf12 commit 0f13482Copy full SHA for 0f13482
.github/workflows/nodejs.yml
@@ -23,8 +23,9 @@ jobs:
23
run: yarn test
24
env:
25
CI: true
26
- - name: Build
27
- run: yarn build
+ - name: Send codecov.io stats
+ if: matrix.node-version == '12.x'
28
+ run: bash <(curl -s https://codecov.io/bash) || echo ''
29
30
publish:
31
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta'
@@ -45,5 +46,4 @@ jobs:
45
46
47
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- - name: Send codecov.io stats
49
- run: yarn coverage && bash <(curl -s https://codecov.io/bash);
+
0 commit comments