We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd087a5 commit 1184ce0Copy full SHA for 1184ce0
‎.github/workflows/workflow.yml
@@ -206,6 +206,10 @@ jobs:
206
$runId = $env:GITHUB_RUN_ID
207
gh run download $runId --repo $repo --pattern *-TestResults
208
$files = Get-ChildItem -Path . -Recurse -File
209
+
210
+ LogGroup "List TestResults files" {
211
+ $files.Name | Out-String
212
+ }
213
$files | Format-Table -AutoSize | Out-String
214
215
$allCases = [System.Collections.Generic.List[psobject]]::new()
@@ -229,7 +233,7 @@ jobs:
229
233
}
230
234
231
235
$cases | ForEach-Object { $allCases.Add($_) }
232
- $cases | Format-Table -AutoSize | Out-String
236
+ $cases | Format-List | Out-String
237
238
239
0 commit comments