From 36cbdb29c0c6dbdc7ca016fa1d671bf5dca2d1ef Mon Sep 17 00:00:00 2001 From: liruifengv Date: Fri, 26 Jun 2026 15:35:56 +0800 Subject: [PATCH] ci: bump windows test timeout to 30s (#1123) --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 896d6fcd4..891806f36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,10 @@ jobs: cache: pnpm - run: pnpm install --frozen-lockfile - - run: pnpm run test + # Windows runners are slower and run the whole suite (including + # in-process e2e tests) under more contention, so the default 5s test + # timeout causes flaky failures. Give it more headroom. + - run: pnpm run test -- --testTimeout=30000 lint: runs-on: ubuntu-latest