Skip to content

Commit 0c33225

Browse files
committed
Add junit test results
1 parent 71192d6 commit 0c33225

File tree

5 files changed

+419
-7
lines changed

5 files changed

+419
-7
lines changed

.github/workflows/continuous-testing.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Continuous Testing
22

3+
env:
4+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5+
36
on:
47
push:
58
branches: ["main"]
@@ -25,3 +28,8 @@ jobs:
2528
uses: codecov/codecov-action@v4
2629
with:
2730
token: ${{ secrets.CODECOV_TOKEN }}
31+
- name: Upload test results to Codecov
32+
if: ${{ !cancelled() }}
33+
uses: codecov/test-results-action@v1
34+
with:
35+
token: ${{ secrets.CODECOV_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules/
22
dist/
33
coverage/
4+
test-results/

0 commit comments

Comments
 (0)