Skip to content

Commit d9c3594

Browse files
committed
- adjust table structure
1 parent cfb2e06 commit d9c3594

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
group_suite: true
9999
comment: true
100100
skip_annotations: true
101-
check_title_template: '{{SUITE_NAME}} | {{TEST_NAME}}'
101+
check_title_template: '{{TEST_NAME}}'
102102
annotate_only: ${{ github.event_name == 'workflow_dispatch' }}
103103

104104
release:

dist/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/table.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export function buildSummaryTables(
7676
])
7777
}
7878
} else {
79+
detailsTable.push([`${testResult.checkName}`, ``, ``])
7980
for (const internalTestResult of testResult.testResults) {
8081
appendDetailsTable(internalTestResult, detailsTable, includePassed)
8182
}
@@ -100,10 +101,9 @@ function appendDetailsTable(
100101
annotation => includePassed || annotation.annotation_level !== 'notice'
101102
)
102103
if (annotations.length > 0) {
103-
detailsTable.push([`${testResult.name}`, ``, ``])
104104
for (const annotation of annotations) {
105105
detailsTable.push([
106-
``,
106+
`${testResult.name}`,
107107
`${annotation.title}`,
108108
`${
109109
annotation.status === 'success'

0 commit comments

Comments
 (0)