Skip to content

Commit

Permalink
👷 chore: add jest converage at test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
seungok Jeong committed Jul 14, 2023
1 parent 71cebcb commit 259c6e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
- develop
pull_request:
branches:
- "**"
Expand All @@ -20,4 +19,4 @@ jobs:
run: yarn install

- name: Run unit tests
run: yarn test
run: yarn test:ci
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
"build": "rimraf lib && yarn build:rollup && yarn build:tsc",
"build:rollup": "rollup -c",
"build:tsc": "tsc -p tsconfig.esm.json",
"test": "jest"
"test": "jest",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage"
},
"dependencies": {
"@babel/runtime": "^7.21.0"
Expand Down

0 comments on commit 259c6e8

Please sign in to comment.