Skip to content

Commit

Permalink
Publish test reports in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
candrews committed Apr 11, 2023
1 parent 4b088e9 commit ff5608f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ jobs:
# Note that bootBuildImage builds the image, but it's not pushed anywhere.
# In the real world, you would push it somewhere using the --publishImage argument to bootBuildImage.
arguments: build bootBuildImage -Pno-testcontainers
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: success() || failure() # always run even if the previous step fails
with:
report_paths:
- 'build/reports/**/TEST-*.xml'
- 'build/reports/cypress/results-*.xml'
- name: upload build reports
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
with:
Expand Down

0 comments on commit ff5608f

Please sign in to comment.