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 4a09d7e commit bc23790Copy full SHA for bc23790
.circleci/config.yml
@@ -9,7 +9,7 @@ orbs:
9
codecov: codecov/codecov@1.2.3
10
11
jobs:
12
- generate-test-coverage-report:
+ test-coverage-report:
13
<<: *defaults
14
steps:
15
- checkout
@@ -25,17 +25,11 @@ jobs:
25
paths:
26
- /home/circleci/repo/.npm # this is where the npm cache is stored when we use npm ci
27
- run: npm run coverage
28
- upload-test-coverage:
29
- <<: *defaults
30
- steps:
31
- codecov/upload:
32
file: /home/circleci/repo/coverage/*.xml
33
token: $CODECOV_TOKEN
34
35
workflows:
36
node-tests:
37
38
- - generate-test-coverage-report
39
- - upload-test-coverage:
40
- requires:
41
+ - test-coverage-report
0 commit comments