Skip to content

Commit

Permalink
Updated as per review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed Aug 14, 2024
1 parent 6d7b7f6 commit 180bca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/buildSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function writeSummary(taskSummaryTableRows: string[][]) {
}

export function getSummaryRows(buildSummary: string): any[] {
const rows = JSON.parse(buildSummary).map(t => {
const rows = JSON.parse(buildSummary).map((t: any) => {
if (t.failed) {
return [t.name, '🔴 Failed', t.description, t.duration.toString()];
} else if (t.skipped) {
Expand Down

0 comments on commit 180bca2

Please sign in to comment.