We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 613a17e commit a0382c4Copy full SHA for a0382c4
.github/workflows/ui-tests.yml
@@ -80,7 +80,8 @@ jobs:
80
- name: Run UI tests
81
id: ui-tests
82
run: |
83
- $p = Start-Process -Wait -FilePath "${env:RUNNER_TEMP}\ahk\AutoHotKey64.exe" -ArgumentList ui-tests\background-hook.ahk, "$PWD\bg-hook"
+ $p = Start-Process -PassThru -FilePath "${env:RUNNER_TEMP}\ahk\AutoHotKey64.exe" -ArgumentList ui-tests\background-hook.ahk, "$PWD\bg-hook"
84
+ $p.WaitForExit()
85
if ($p.ExitCode -ne 0) { echo "::error::Test failed!" } else { echo "::notice::Test log" }
86
type bg-hook.log
87
if ($p.ExitCode -ne 0) { exit 1 }
0 commit comments