Skip to content

Commit ac4b482

Browse files
Remove width specification from Format-Table output in Action-Test workflow
1 parent 58f8ea5 commit ac4b482

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/Action-Test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
[PSCustomObject]@{ Output = 'ReleaseType'; Expected = 'Release'; Actual = $env:RESOLVE_RELEASE_TYPE }
8383
[PSCustomObject]@{ Output = 'Version'; Expected = '(non-empty)'; Actual = $env:RESOLVE_VERSION }
8484
[PSCustomObject]@{ Output = 'FullVersion'; Expected = '(any)'; Actual = $env:RESOLVE_FULL_VERSION }
85-
) | Format-Table -AutoSize | Out-String -Width 200
85+
) | Format-Table -AutoSize | Out-String
8686
8787
$failed = $false
8888
if ($env:RESOLVE_CREATE_RELEASE -ne 'true') {
@@ -164,7 +164,7 @@ jobs:
164164
[PSCustomObject]@{ Output = 'ReleaseType'; Expected = 'Release'; Actual = $env:RESOLVE_RELEASE_TYPE }
165165
[PSCustomObject]@{ Output = 'Version'; Expected = '(non-empty)'; Actual = $env:RESOLVE_VERSION }
166166
[PSCustomObject]@{ Output = 'FullVersion'; Expected = '(any)'; Actual = $env:RESOLVE_FULL_VERSION }
167-
) | Format-Table -AutoSize | Out-String -Width 200
167+
) | Format-Table -AutoSize | Out-String
168168
169169
$failed = $false
170170
if ($env:RESOLVE_CREATE_RELEASE -ne 'true') {
@@ -246,7 +246,7 @@ jobs:
246246
[PSCustomObject]@{ Output = 'ReleaseType'; Expected = 'Release'; Actual = $env:RESOLVE_RELEASE_TYPE }
247247
[PSCustomObject]@{ Output = 'Version'; Expected = '(non-empty)'; Actual = $env:RESOLVE_VERSION }
248248
[PSCustomObject]@{ Output = 'FullVersion'; Expected = '(any)'; Actual = $env:RESOLVE_FULL_VERSION }
249-
) | Format-Table -AutoSize | Out-String -Width 200
249+
) | Format-Table -AutoSize | Out-String
250250
251251
$failed = $false
252252
if ($env:RESOLVE_CREATE_RELEASE -ne 'true') {
@@ -326,7 +326,7 @@ jobs:
326326
[PSCustomObject]@{ Output = 'ReleaseType'; Expected = 'Release'; Actual = $env:RESOLVE_RELEASE_TYPE }
327327
[PSCustomObject]@{ Output = 'Version'; Expected = '(non-empty)'; Actual = $env:RESOLVE_VERSION }
328328
[PSCustomObject]@{ Output = 'FullVersion'; Expected = '(any)'; Actual = $env:RESOLVE_FULL_VERSION }
329-
) | Format-Table -AutoSize | Out-String -Width 200
329+
) | Format-Table -AutoSize | Out-String
330330
331331
$failed = $false
332332
if ($env:RESOLVE_CREATE_RELEASE -ne 'true') {
@@ -406,7 +406,7 @@ jobs:
406406
@(
407407
[PSCustomObject]@{ Output = 'CreateRelease'; Expected = 'false'; Actual = $env:RESOLVE_CREATE_RELEASE }
408408
[PSCustomObject]@{ Output = 'ReleaseType'; Expected = 'None'; Actual = $env:RESOLVE_RELEASE_TYPE }
409-
) | Format-Table -AutoSize | Out-String -Width 200
409+
) | Format-Table -AutoSize | Out-String
410410
411411
$failed = $false
412412
if ($env:RESOLVE_CREATE_RELEASE -ne 'false') {
@@ -480,7 +480,7 @@ jobs:
480480
[PSCustomObject]@{ Output = 'CreateRelease'; Expected = 'false'; Actual = $env:RESOLVE_CREATE_RELEASE }
481481
[PSCustomObject]@{ Output = 'ReleaseType'; Expected = 'None'; Actual = $env:RESOLVE_RELEASE_TYPE }
482482
[PSCustomObject]@{ Output = 'Version'; Expected = '(empty)'; Actual = $env:RESOLVE_VERSION }
483-
) | Format-Table -AutoSize | Out-String -Width 200
483+
) | Format-Table -AutoSize | Out-String
484484
485485
$failed = $false
486486
if ($env:RESOLVE_CREATE_RELEASE -ne 'false') {
@@ -566,7 +566,7 @@ jobs:
566566
[PSCustomObject]@{ Output = 'Version'; Expected = '(non-empty)'; Actual = $env:RESOLVE_VERSION }
567567
[PSCustomObject]@{ Output = 'Prerelease'; Expected = 'feataddprereleasesupport*'; Actual = $env:RESOLVE_PRERELEASE }
568568
[PSCustomObject]@{ Output = 'FullVersion'; Expected = '(contains -)'; Actual = $env:RESOLVE_FULL_VERSION }
569-
) | Format-Table -AutoSize | Out-String -Width 200
569+
) | Format-Table -AutoSize | Out-String
570570
571571
$failed = $false
572572
if ($env:RESOLVE_CREATE_RELEASE -ne 'true') {

0 commit comments

Comments
 (0)