From 05106a7434f12d40c092e31f51f18422ebb05c90 Mon Sep 17 00:00:00 2001
From: Michael Kriese <michael.kriese@visualon.de>
Date: Wed, 1 Apr 2020 21:35:09 +0200
Subject: [PATCH] chore(ci): allow longer github job timeout (#5851)

---
 .github/workflows/build.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5056e46b93..cb78ebf5b0 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -35,8 +35,8 @@ jobs:
     needs: [cleanup]
     runs-on: ${{ matrix.os }}
 
-    # tests shouldn't need more than 15 min
-    timeout-minutes: 15
+    # tests shouldn't need more time
+    timeout-minutes: 30
 
     strategy:
       matrix:
@@ -163,7 +163,7 @@ jobs:
     runs-on: ubuntu-latest
 
     # lint shouldn't need more than 10 min
-    timeout-minutes: 10
+    timeout-minutes: 15
 
     steps:
       - name: Set up Node.js ${{ env.NODE_VERSION }}
@@ -260,7 +260,7 @@ jobs:
     needs: [lint, test, test-docker]
     runs-on: ubuntu-latest
     # release shouldn't need more than 5 min
-    timeout-minutes: 5
+    timeout-minutes: 15
 
     steps:
       - name: Set up Node.js ${{ env.NODE_VERSION }}
-- 
GitLab