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 17f6bf7 commit f8558e7Copy full SHA for f8558e7
.github/workflows/run-tests.yml
@@ -59,7 +59,7 @@ jobs:
59
- run: make build
60
- run: pnpm run test:coverage --environment ${{ matrix.test-environment }}
61
- uses: codecov/[email protected]
62
- - run: vitest --reporter=junit --outputFile=test-report.junit.xml
+ - run: pnpm run test:junit
63
- name: Upload test results to Codecov
64
if: ${{ !cancelled() }}
65
uses: codecov/test-results-action@v1
package.json
@@ -29,6 +29,7 @@
29
"prepare": "husky",
30
"test": "vitest run",
31
"test:coverage": "vitest run --coverage",
32
+ "test:junit": "vitest --reporter=junit --outputFile=test-report.junit.xml",
33
"test:ui": "vitest --ui"
34
},
35
"lint-staged": {
0 commit comments