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 fe5da3c commit 0847838Copy full SHA for 0847838
2 files changed
.github/workflows/test.yml
@@ -21,7 +21,7 @@ jobs:
21
cache: pnpm
22
23
- run: pnpm install --frozen-lockfile
24
- - run: pnpm test
+ - run: pnpm run test:coverage
25
- name: Upload coverage reports to Codecov
26
uses: codecov/codecov-action@v5
27
with:
package.json
@@ -8,7 +8,8 @@
8
"build": "next build",
9
"start": "next start",
10
"lint": "eslint .",
11
- "test": "vitest run --coverage",
+ "test": "vitest run",
12
+ "test:coverage": "vitest run --coverage",
13
"test:watch": "vitest",
14
"telemetry": "next telemetry disable"
15
},
0 commit comments