From a47f5d3ea2e31ffa133596ad3397af2b44324e0a Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Sun, 19 Apr 2026 16:28:13 -0700 Subject: [PATCH] ci: bump test-job timeout from 10m to 20m (#12718) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Recent main runs have been hitting the 10-minute cap repeatedly — the full non-integration suite no longer fits in that window on ubuntu-latest. Cancelled runs leave main without a green signal, which masks real regressions. Bumps only the test job. The e2e job still finishes in ~25s, so its 10-minute cap stays as-is. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02248d250..a92afdfa4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,7 +23,7 @@ concurrency: jobs: test: runs-on: ubuntu-latest - timeout-minutes: 10 + timeout-minutes: 20 steps: - name: Checkout code uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4