From 9d46590db1657779085dc37d8a9190acd9c2039a Mon Sep 17 00:00:00 2001 From: MrGadget1024 <9826063+MrGadget1024@users.noreply.github.com> Date: Wed, 1 Mar 2023 17:48:26 -0500 Subject: [PATCH] RunUnityTests - try different test reporter --- .github/workflows/RunUnityTests.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/RunUnityTests.yml b/.github/workflows/RunUnityTests.yml index 25c8203a4..e32541ab0 100644 --- a/.github/workflows/RunUnityTests.yml +++ b/.github/workflows/RunUnityTests.yml @@ -54,8 +54,15 @@ jobs: path: artifacts - name: Publish test results - uses: MirrorNetworking/nunit-reporter@master + uses: dorny/test-reporter@v1 + if: success() || failure() # run this step even if previous step failed with: - reportTitle: Test Report ${{ matrix.unityVersion }} - path: "artifacts/*.xml" - access-token: ${{ secrets.GITHUB_TOKEN }} + name: Test Report ${{ matrix.unityVersion }} # Name of the check run which will be created + path: artifacts/*.xml # Path to test results + reporter: jest-junit # Format of test results + + #uses: MirrorNetworking/nunit-reporter@master + #with: + # reportTitle: Test Report ${{ matrix.unityVersion }} + # path: "artifacts/*.xml" + # access-token: ${{ secrets.GITHUB_TOKEN }}