From b0a9dbeec274548f4e2d5958e5e0c46988d87e45 Mon Sep 17 00:00:00 2001
From: Ariya Hidayat <ariya@metabase.com>
Date: Mon, 30 Aug 2021 21:18:57 -0700
Subject: [PATCH] CI with GitHub Actions: bump the timeout for front-end unit
 tests (#17682)

With the code being instrumented for code coverage, and another
additional time to analyze + send the code coverage to codecov.io,
the typical execution runs awfully close to the 10-min limit.
Hence, add some extra room.
---
 .github/workflows/frontend.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml
index 951dbd47ff5..aa9c701958e 100644
--- a/.github/workflows/frontend.yml
+++ b/.github/workflows/frontend.yml
@@ -78,7 +78,7 @@ jobs:
 
   fe-tests-unit:
     runs-on: ubuntu-20.04
-    timeout-minutes: 10
+    timeout-minutes: 12
     steps:
     - uses: actions/checkout@v2
     - name: Prepare Node.js
-- 
GitLab