Skip to content

Commit b77c1ca

Browse files
🩹 [Refactor]: Add logging for each file's content in workflow script to enhance output visibility
1 parent ed86f24 commit b77c1ca

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

‎.github/workflows/workflow.yml‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,13 @@ jobs:
208208
$files = Get-ChildItem -Path . -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object
209209
$files | Format-Table -AutoSize | Out-String
210210
211+
foreach ($file in $files) {
212+
$fileName = $file.BaseName
213+
LogGroup $fileName {
214+
Get-Content -Path $file | Out-String
215+
}
216+
}
217+
211218
# Get-CodeCoverage:
212219
# name: Get-CodeCoverage
213220
# runs-on: ubuntu-latest

0 commit comments

Comments
 (0)