related-tests run vs the timeout cap
actual run
cap (timeout)
Outcome
Commit:
The fix (root cause: timeout ≠ failure)
const CHECK_TIMEOUT_MS = 8000; // was 5000 — under the ~5.6s cold start const e = err as { killed?: boolean; signal?: string; code?: string }; const timedOut = e?.killed === true || e?.signal === 'SIGTERM' || e?.code === 'ETIMEDOUT'; // a killed check produced no verdict → advisory skip, never blocks: const failures = checks.filter(c => !c.passed && !c.timedOut);