Skip to content

Commit 1ae7d56

Browse files
Fix PowerShell lint line length
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 33c4aae commit 1ae7d56

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

  • .github/actions/Get-PesterTestResults/src

.github/actions/Get-PesterTestResults/src/main.ps1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ $runId = $env:GITHUB_RUN_ID
1313
$beforeAllModuleLocalResult = $env:PSMODULE_GET_PESTERTESTRESULTS_INPUT_BeforeAllModuleLocalResult
1414

1515
if ($beforeAllModuleLocalResult -eq 'failure') {
16-
Write-GitHubError 'BeforeAll-ModuleLocal failed. Module-local tests were skipped as a safety stop, and AfterAll-ModuleLocal cleanup was still requested. See the BeforeAll-ModuleLocal job log for the root cause.'
16+
Write-GitHubError (
17+
'BeforeAll-ModuleLocal failed. Module-local tests were skipped as a safety stop, ' +
18+
'and AfterAll-ModuleLocal cleanup was still requested. ' +
19+
'See the BeforeAll-ModuleLocal job log for the root cause.'
20+
)
1721
exit 1
1822
}
1923

0 commit comments

Comments
 (0)