Skip to content

Commit 1698752

Browse files
Enhance output formatting for Git configuration list in Action-Test workflow
1 parent b468922 commit 1698752

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/Action-Test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ jobs:
4646
$configList = $null
4747
} else {
4848
$configList = $configList | Sort-Object
49-
$configList | Get-Member
50-
$configList.GetType()
51-
$configList
49+
$configList | Get-Member | Format-Table -AutoSize
50+
$configList.GetType() | Format-Table -AutoSize
51+
$configList | Format-Table -AutoSize
5252
}
5353
}
5454
}

0 commit comments

Comments
 (0)