Skip to content

Commit

Permalink
updating to always run vitest with coverage (#605)
Browse files Browse the repository at this point in the history
* updating to always run vitest with coverage

* fixing for coverage
  • Loading branch information
jaredwray authored Oct 8, 2023
1 parent 2eca5a0 commit 9a703de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: npm run build

- name: Test
run: npm run test -- --coverage
run: npm run test

- name: Codecov
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"test": "vitest",
"test": "vitest run --coverage",
"release": "yarn check && yarn test -- --run && yarn build",
"fix": "yarn lint && yarn fmt",
"check": "yarn lint:check && yarn fmt:check",
Expand Down

0 comments on commit 9a703de

Please sign in to comment.