(event: BuildStageRenderItem)
| 470 | }; |
| 471 | |
| 472 | export function formatBuildStageEvent(event: BuildStageRenderItem): string { |
| 473 | if (event.stage === 'COMPLETED') { |
| 474 | return event.message; |
| 475 | } |
| 476 | return `\u203A ${BUILD_STAGE_LABEL[event.stage]}`; |
| 477 | } |
| 478 | |
| 479 | export function formatTransientBuildStageEvent(event: BuildStageRenderItem): string { |
| 480 | if (event.stage === 'COMPLETED') { |
no outgoing calls
no test coverage detected