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 c6cbf7c commit c82e072Copy full SHA for c82e072
1 file changed
.github/workflows/run-tests.yml
@@ -29,10 +29,15 @@ jobs:
29
run: bun install
30
31
- name: Run the tests with coverage
32
- run: bun test
+ run: bun test --coverage-junit --coverage
33
+
34
+ - name: Upload failed test results to Codecov
35
+ if: ${{ !cancelled() }}
36
+ uses: codecov/test-results-action@v1
37
+ with:
38
+ token: ${{ secrets.CODECOV_TOKEN }}
39
40
- name: Upload coverage to Codecov
41
uses: codecov/codecov-action@v4
42
with:
43
token: ${{ secrets.CODECOV_TOKEN }}
- directory: coverage
0 commit comments