From 784faa1e85c63f21323a7490a52d573088cc490f Mon Sep 17 00:00:00 2001 From: Kuniwak Date: Thu, 18 Apr 2024 19:39:09 +0900 Subject: [PATCH] Add action-junit-report --- .github/workflows/unity-meta-check-push.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/unity-meta-check-push.yml b/.github/workflows/unity-meta-check-push.yml index 8af7243..b279997 100644 --- a/.github/workflows/unity-meta-check-push.yml +++ b/.github/workflows/unity-meta-check-push.yml @@ -19,6 +19,8 @@ jobs: target_path: ./Directory log_level: DEBUG ignored_file_path: .meta-check-ignore + enable_junit: true + junit_xml_path: junit.xml enable_pr_comment: true pr_comment_lang: ja pr_comment_send_success: true @@ -26,3 +28,9 @@ jobs: env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" if: always() + + - uses: mikepenz/action-junit-report@v3 + with: + report_paths: junit.xml + detailed_summary: true + if: always()