Skip to content

Commit 04e5d17

Browse files
🩹 [Refactor]: Simplify output handling in Gather-Tests workflow by removing unnecessary JSON conversion for test results
1 parent 3a79e73 commit 04e5d17

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

‎.github/workflows/Gather-Tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,4 @@ jobs:
9494
9595
Write-Output ($tests | ConvertTo-Json -Depth 10)
9696
97-
Set-GitHubOutput -Name Tests -Value ($tests | ConvertTo-Json -Depth 10 -Compress)
98-
Get-Content $env:GITHUB_OUTPUT
99-
Set-GithubStepSummary -Summary (Get-Content $env:GITHUB_OUTPUT)
97+
Set-GitHubOutput -Name Tests -Value $tests

0 commit comments

Comments
 (0)