Skip to content

Commit 46bfa17

Browse files
committed
style
1 parent 3c785fe commit 46bfa17

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

frontend/scripts/check-assets.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,11 @@ class Problems<K extends string, T extends string> {
6262

6363
Object.entries(this.problems).forEach(([key, problems]) => {
6464
let label: string = this.labels[key as T] ?? `${key}`;
65-
stepSummary.addHeading(`❌ ${label}`, 3).addList(problems as string[]);
65+
stepSummary
66+
.addRaw(`❌ ${label}`)
67+
.addEOL()
68+
.addList(problems as string[])
69+
.addEOL();
6670
});
6771

6872
return (

0 commit comments

Comments
 (0)