We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4e6d7e commit 55cdfa5Copy full SHA for 55cdfa5
.github/workflows/build.yml
@@ -52,5 +52,5 @@ jobs:
52
- run: npm ci
53
- name: test
54
run: npm run test -- --coverage
55
- - name: Codecov
+ - name: codecov
56
uses: codecov/codecov-action@v2
.github/workflows/release.yml
@@ -34,9 +34,6 @@ jobs:
34
id: test
35
if: ${{ always() }}
36
37
38
- if: steps.test.outcome == 'success'
39
- uses: codecov/codecov-action@v2
40
- name: lint
41
42
run: npm run lint
@@ -54,3 +51,6 @@ jobs:
51
npm run release -- \
${{ github.event.inputs.version }} \
--ci
+ - name: codecov # Perform after version publishing
+ if: steps.test.outcome == 'success'
+ uses: codecov/codecov-action@v2
0 commit comments