We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3d5275 commit 22dc4e2Copy full SHA for 22dc4e2
1 file changed
.github/workflows/tests.yml
@@ -16,11 +16,18 @@ jobs:
16
run: yarn install --dev
17
18
- name: Run tests
19
- run: yarn run test
+ run: yarn run test -- --ci --reporters=default --reporters=jest-junit
20
env:
21
CI: true
22
23
- name: Upload coverage
24
uses: codecov/codecov-action@v5
25
with:
26
token: ${{ secrets.CODECOV_TOKEN }}
27
+
28
+ - name: Upload test results to Codecov
29
+ if: ${{ !cancelled() }}
30
+ uses: codecov/test-results-action@v1
31
+ with:
32
+ token: ${{ secrets.CODECOV_TOKEN }}
33
+ files: ./junit.xml
0 commit comments