Skip to content

Commit b023068

Browse files
Enhance coverage report by listing analyzed files in a clearer format
1 parent 782ade6 commit b023068

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

scripts/main.ps1

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,11 @@ LogGroup 'Set step summary' {
234234
}
235235

236236
Details "Files analyzed [$($codeCoverage.FilesAnalyzedCount)]" {
237-
Table {
238-
$codeCoverage | Select-Object -Property FilesAnalyzed
237+
Paragraph {
238+
$codeCoverage.FilesAnalyzed | ForEach-Object {
239+
$file = ConvertTo-RelativePath $_
240+
Write-Output "- $file"
241+
}
239242
}
240243
}
241244
}

0 commit comments

Comments
 (0)