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 d74b284 commit 7070ea7Copy full SHA for 7070ea7
.circleci/config.yml
@@ -1,6 +1,6 @@
1
version: 2.1
2
orbs:
3
- codecov: codecov/codecov@1.1.1
+ codecov: codecov/codecov@5
4
jobs:
5
test:
6
docker:
@@ -43,12 +43,12 @@ jobs:
43
command: |
44
yarn test:ci
45
environment:
46
- JEST_JUNIT_OUTPUT_DIR: ./reports/
+ JEST_JUNIT_OUTPUT_DIR: ./coverage/
47
- store_test_results:
48
- path: ./reports/
+ path: ./coverage/
49
- codecov/upload:
50
flags: unittest
51
- file:
+ file: ./coverage/coverage-final.json
52
- save_cache:
53
paths:
54
- ./node_modules
@@ -76,8 +76,6 @@ jobs:
76
name: Publish package
77
command: npm publish --tag latest
78
deployBeta:
79
- environment:
80
- CODECOV_TOKEN: 08a98f72-f099-432a-a6b5-49c1f134fe90
81
82
- image: cimg/node:20.12.2
83
working_directory: ~/repo
0 commit comments