Skip to content

Commit cd087a5

Browse files
🩹 [Refactor]: Update file path retrieval in workflow script for XML processing
1 parent 797ffb6 commit cd087a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
Get-Content -Path $file | Out-String
216216
}
217217
LogGroup "$fileName - Process" {
218-
$xmlDoc = [xml](Get-Content $_.FullName)
218+
$xmlDoc = [xml](Get-Content -Path $file.FullName)
219219
$cases = $xmlDoc.SelectNodes('//test-case') | ForEach-Object {
220220
[pscustomobject]@{
221221
Name = $_.name

0 commit comments

Comments
 (0)