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 4b24381 commit a2b55b2Copy full SHA for a2b55b2
.github/workflows/test.yml
@@ -30,7 +30,7 @@ jobs:
30
run_install: true
31
32
- name: Test
33
- run: pnpm test -- --coverage
+ run: pnpm test:coverage
34
35
- name: Upload code coverage
36
uses: codecov/codecov-action@v3
package.json
@@ -52,6 +52,7 @@
52
],
53
"scripts": {
54
"test": "pnpm --filter \"test-*\" install && pnpm --filter \"test-*\" test",
55
+ "test:coverage": "pnpm --filter \"test-*\" install && pnpm --filter \"test-*\" test -- --coverage",
56
"build": "tsup",
57
"lint": "eslint .",
58
"prepare": "husky install"
0 commit comments