Skip to content

Commit

Permalink
Added unicode for status
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed May 22, 2024
1 parent 83addc9 commit 9a432ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/buildSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ export function addBuildSummaryTable(tasks: TaskList): void {
let taskDetails: string[] = [];
taskDetails.push(task.name);
if (task.failed) {
taskDetails.push('FAILED');
taskDetails.push('🔴 FAILED');
} else if (task.skipped) {
taskDetails.push('SKIPPED');
taskDetails.push('🔵 SKIPPED');
} else {
taskDetails.push('PASSED');
taskDetails.push('🟢 PASSED');
}
taskDetails.push(task.description);
taskDetails.push(task.duration);
Expand Down

0 comments on commit 9a432ca

Please sign in to comment.