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 19690a5 commit 97084cdCopy full SHA for 97084cd
.github/workflows/build.yml
@@ -51,6 +51,6 @@ jobs:
51
cache: npm
52
- run: npm ci
53
- name: test
54
- run: npm run test -- --coverage
+ run: npm run test:coverage
55
- name: codecov
56
uses: codecov/codecov-action@v3
package.json
@@ -43,7 +43,8 @@
43
"format:write": "npm run format:check -- --write",
44
"lint": "eslint --ext \".js,.ts\" .",
45
"release": "release-it",
46
- "test": "vitest run --coverage"
+ "test": "vitest",
47
+ "test:coverage": "vitest --coverage"
48
},
49
"files": [
50
"dist/**/*"
0 commit comments