From 02b360c19c2451cd8f13a80a837c3c25af5c39f7 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 22 Jul 2026 05:07:36 +0000 Subject: [PATCH] ci(ui): bump UI Unit Tests timeout to 30 minutes so the full staging run has headroom The full vitest suite currently runs about 17 minutes on ubuntu-latest and create_mcp_server.test.tsx alone takes around 950 seconds. Slower-than-usual runners regularly push a push-to-staging run past the 20-minute limit and the job gets canceled mid-suite (e.g. 6375923f65 ran 20m15s before timing out). Nothing about the code changed since the last green run; the workflow was just sized too tightly when it was added. Give the full-suite path a 30-minute budget. Co-authored-by: Krrish Dholakia --- .github/workflows/test-litellm-ui-unit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-litellm-ui-unit.yml b/.github/workflows/test-litellm-ui-unit.yml index f0f9f504752..ae8a11b4ba5 100644 --- a/.github/workflows/test-litellm-ui-unit.yml +++ b/.github/workflows/test-litellm-ui-unit.yml @@ -20,7 +20,7 @@ concurrency: jobs: ui-unit-tests: runs-on: ubuntu-latest - timeout-minutes: 20 + timeout-minutes: 30 defaults: run: working-directory: ui/litellm-dashboard