RunUnityTests - try different test reporter

This commit is contained in:
MrGadget1024 2023-03-01 17:48:26 -05:00
parent c8743b287a
commit 9d46590db1

View File

@ -54,8 +54,15 @@ jobs:
path: artifacts path: artifacts
- name: Publish test results - 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: with:
reportTitle: Test Report ${{ matrix.unityVersion }} name: Test Report ${{ matrix.unityVersion }} # Name of the check run which will be created
path: "artifacts/*.xml" path: artifacts/*.xml # Path to test results
access-token: ${{ secrets.GITHUB_TOKEN }} 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 }}