We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b088e9 commit 4ffc47fCopy full SHA for 4ffc47f
1 file changed
.github/workflows/build.yml
@@ -46,6 +46,13 @@ jobs:
46
# Note that bootBuildImage builds the image, but it's not pushed anywhere.
47
# In the real world, you would push it somewhere using the --publishImage argument to bootBuildImage.
48
arguments: build bootBuildImage -Pno-testcontainers
49
+ - name: Publish Test Report
50
+ uses: mikepenz/action-junit-report@v3
51
+ if: success() || failure() # always run even if the previous step fails
52
+ with:
53
+ report_paths:
54
+ - 'build/reports/**/TEST-*.xml'
55
+ - 'build/reports/cypress/results-*.xml'
56
- name: upload build reports
57
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
58
with:
0 commit comments