🐛 update actions work

This commit is contained in:
Tw93
2025-08-14 11:52:37 +08:00
parent 81eae9627a
commit 7b74b7fc15
5 changed files with 22 additions and 7 deletions

View File

@@ -149,7 +149,11 @@ jobs:
shell: bash
run: |
echo "Testing CLI integration with weekly.tw93.fun..."
timeout 30s node dist/cli.js https://weekly.tw93.fun --name "CITestWeekly" --debug || true
if [[ "$RUNNER_OS" == "Windows" ]]; then
timeout 120s node dist/cli.js https://weekly.tw93.fun --name "CITestWeekly" --debug || true
else
timeout 30s node dist/cli.js https://weekly.tw93.fun --name "CITestWeekly" --debug || true
fi
echo "Integration test completed (expected to timeout)"
summary: