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 0b8ff3f commit f27dec9Copy full SHA for f27dec9
.github/workflows/test.yml
@@ -36,6 +36,6 @@ jobs:
36
cache: npm
37
- run: npm ci
38
- name: test
39
- run: npm run test -- --coverage
+ run: npm run test:coverage
40
- name: codecov
41
uses: codecov/codecov-action@v3
package.json
@@ -12,7 +12,8 @@
12
"lint": "eslint --ext \".js,.ts\" .",
13
"lint:fix": "npm run lint -- --fix",
14
"release": "release-it",
15
- "test": "vitest run --coverage"
+ "test": "vitest",
16
+ "test:coverage": "vitest --coverage"
17
},
18
"repository": {
19
"type": "git",
0 commit comments