diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a4fdc250..5df9297bf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: