From 0004794201aa725e681ffeacc2cda948f748b29e Mon Sep 17 00:00:00 2001 From: Paul Murray Date: Thu, 2 Dec 2021 11:00:42 -0500 Subject: [PATCH] Increase workflow timeout I've noticed that CI tests will hit the 15 minute timeout and fail. Perhaps we just need to increase the timeout? --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbfde04f67..51b35625f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: Tests: runs-on: ${{ matrix.os }} - timeout-minutes: 15 + timeout-minutes: 20 strategy: matrix: node-version: [8, 10, 12, 14, 16]