Skip to content

Commit 7cddb91

Browse files
committed
Update JUnit report step in CI workflow: enable comment updates, group test suites, and avoid stack trace truncation.
1 parent 88b7beb commit 7cddb91

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,16 @@ jobs:
7070
uses: mikepenz/action-junit-report@v6
7171
if: ${{ !cancelled() }} # always run even if the previous step fails
7272
with:
73-
report_paths: '**/test-results/**/TEST-*.xml'
73+
annotate_only: true
74+
comment: true
7475
detailed_summary: true
7576
flaky_summary: true
77+
group_suite: true
7678
include_empty_in_summary: false
7779
include_time_in_summary: true
78-
annotate_only: true
80+
report_paths: '**/test-results/**/TEST-*.xml'
81+
truncate_stack_traces: false
82+
updateComment: true
7983

8084
- name: Disable Auto-Merge on Fail
8185
if: failure() && github.event_name == 'pull_request'

0 commit comments

Comments
 (0)