From c6bccca4563b570c5b1778f65cfb5f2eb933f23c Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Wed, 16 Mar 2022 10:32:49 +0100 Subject: [PATCH] :construction_worker: Run tests with Node.js v16 and shorten max runtime --- .github/workflows/test-workflows.yml | 4 +++- .github/workflows/tests.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-workflows.yml b/.github/workflows/test-workflows.yml index 7cec395af2..cfc2d3a4ff 100644 --- a/.github/workflows/test-workflows.yml +++ b/.github/workflows/test-workflows.yml @@ -11,9 +11,11 @@ jobs: runs-on: ubuntu-latest + timeout-minutes: 30 + strategy: matrix: - node-version: [14.x] + node-version: [16.x] steps: - name: Checkout diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 79c2ba2e32..5bd2c0c001 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,9 +7,11 @@ jobs: runs-on: ubuntu-latest + timeout-minutes: 30 + strategy: matrix: - node-version: [14.x] + node-version: [16.x] steps: - uses: actions/checkout@v1