Skip to content

Commit 80553b5

Browse files
🩹 [CI]: Replace Write-Host with Write-Warning for improved error handling in Get-TestSuites workflow
1 parent e5919c9 commit 80553b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎.github/workflows/Get-TestSuites.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
# Locate the tests directory.
8080
$testsPath = Resolve-Path 'tests' -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Path
8181
if (-not $testsPath -or -not (Test-Path -Path $testsPath)) {
82-
Write-Host 'No tests found'
82+
Write-Warning 'No tests found'
8383
exit 0
8484
}
8585
Write-Host "Tests found at [$testsPath]"

0 commit comments

Comments
 (0)