From b2e1500935ca7a39705901e2c378dbad396846aa Mon Sep 17 00:00:00 2001 From: plebeius Date: Wed, 28 Jan 2026 15:30:37 +0800 Subject: [PATCH] fix(ci): correct APP_PID to reference the app instead of timeout wrapper --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 087a2eae..6805967f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -348,7 +348,7 @@ jobs: EXE=$(find dist/win-unpacked -maxdepth 1 -iname "*.exe" | head -n 1) if [ -n "$EXE" ]; then echo "Testing: $EXE" - timeout 15s "$EXE" & + "$EXE" & APP_PID=$! sleep 10 if kill -0 $APP_PID 2>/dev/null; then