Skip to content

Commit

Permalink
#764: Update to test-reporter 1.9.1 (#876)
Browse files Browse the repository at this point in the history
  • Loading branch information
laingsimon committed May 24, 2024
2 parents ed61a9b + b8573f6 commit 56c9d45
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
format: lcov

- name: Publish nunit test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: NUnitTestResults
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: .net-app

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:

- name: Upload artifact for deployment job
if: ${{ inputs.upload == true }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: .net-app
path: ./CourageScores/myapp
if-no-files-found: error

- name: Publish jest test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: JestTestResults
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish_test_results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ on:

jobs:
report:
name: 'Test Results'
name: 'Test Results (1.9.1)'
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1.8.0
- uses: dorny/test-reporter@v1.9.1
with:
artifact: NUnitTestResults
name: NUnit Tests
path: 'TestResults.trx'
reporter: dotnet-trx
fail-on-error: false

- uses: dorny/test-reporter@v1.8.0
- uses: dorny/test-reporter@v1.9.1
with:
artifact: JestTestResults
name: Jest Tests
Expand Down

0 comments on commit 56c9d45

Please sign in to comment.