Skip to content

Commit c09c968

Browse files
committed
Keep junit.xml
1 parent 784faa1 commit c09c968

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/unity-meta-check-pr.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ jobs:
55
unity-meta-check:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3
8+
- uses: actions/checkout@v4
9+
910
# NOTE: Test no arguments for pull_request
1011
- uses: DeNA/[email protected]
1112

@@ -35,3 +36,8 @@ jobs:
3536
report_paths: junit.xml
3637
detailed_summary: true
3738
if: always()
39+
40+
- uses: actions/upload-artifact@v4
41+
with:
42+
name: junit-test-report
43+
path: junit.xml

.github/workflows/unity-meta-check-push.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ jobs:
55
unity-meta-check:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3
8+
- uses: actions/checkout@v4
9+
910
# NOTE: Test no arguments for push
1011
- uses: DeNA/[email protected]
1112

@@ -29,6 +30,11 @@ jobs:
2930
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
3031
if: always()
3132

33+
- uses: actions/upload-artifact@v4
34+
with:
35+
name: junit-test-report
36+
path: junit.xml
37+
3238
- uses: mikepenz/action-junit-report@v3
3339
with:
3440
report_paths: junit.xml

0 commit comments

Comments
 (0)