Skip to content

Commit

Permalink
error output
Browse files Browse the repository at this point in the history
  • Loading branch information
TomKovac committed Jan 8, 2025
1 parent a48cc90 commit e1f8aa6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/app-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:

- name: Run app test PowerShell script
run: |
$result = ./scripts/app-test.ps1
# Write-Output "Script Result: $result"
try
{
./scripts/app-test.ps1 2>&1 | ForEach-Object { Write-Host $_ }
}
catch
{
Write-Error "An unexpected error occurred: $_"
}
shell: powershell

0 comments on commit e1f8aa6

Please sign in to comment.