Skip to content

Commit

Permalink
#764: Update to test-reporter 1.9.1 allowing for upgrade of upload-ar…
Browse files Browse the repository at this point in the history
…tifact
  • Loading branch information
laingsimon committed May 21, 2024
1 parent 76fa931 commit 6cbdec0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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
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
4 changes: 2 additions & 2 deletions .github/workflows/publish_test_results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
name: 'Test Results'
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 6cbdec0

Please sign in to comment.