Skip to content

Commit

Permalink
fix: add env and change path
Browse files Browse the repository at this point in the history
  • Loading branch information
Kronos66 committed Sep 27, 2022
1 parent 18b406d commit bd11dd2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
docker:
- image: cimg/node:14.19.3
working_directory: ~/repo
resource_class: large
steps:
- checkout
- run:
Expand All @@ -34,7 +35,9 @@ jobs:
- run:
name: Test
command: |
yarn test:unit
yarn test:unit:ci
- store_test_results:
path: ./coverage/clover.xml
- codecov/upload:
flags: unittest
file:
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"clean": "rm -rf build",
"develop": "nodemon --exec \"yarn build:dev\"",
"test:unit": "jest --verbose --coverage",
"test:unit:ci": "CI=true jest --ci --verbose --coverage",
"lint": "prettier --check .",
"format": "prettier --write ."
},
Expand Down

0 comments on commit bd11dd2

Please sign in to comment.