We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80553b5 commit 7678ec2Copy full SHA for 7678ec2
‎.github/workflows/Get-TestSuites.yml‎
@@ -159,6 +159,6 @@ jobs:
159
$testSuites | Format-Table -AutoSize | Out-String
160
}
161
162
- # Pass the final objects to GitHub Actions output.
163
- Set-GitHubOutput -Name SourceCodeTestSuites -Value $sourceCodeTestSuites
164
- Set-GitHubOutput -Name ModuleTestSuites -Value $testSuites
+ # Pass the final objects to GitHub Actions output as JSON
+ Set-GitHubOutput -Name SourceCodeTestSuites -Value ($sourceCodeTestSuites ?? '[]')
+ Set-GitHubOutput -Name ModuleTestSuites -Value ($testSuites ?? '[]')
0 commit comments