From dac4dec0ad16608daf49ba54e33f0783f9fa10c4 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Tue, 22 Aug 2023 06:13:52 -0700 Subject: [PATCH] Put reasonable GH action timeouts in place Fixes #4711 --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eaf22d67..240e13c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,7 @@ on: jobs: build: runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v3 - name: Use Node.js 18.x @@ -55,6 +56,7 @@ jobs: lint: runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v3 - name: Use Node.js 18.x @@ -71,6 +73,7 @@ jobs: unit-tests: needs: build + timeout-minutes: 20 strategy: matrix: node-version: [16, 18] @@ -101,6 +104,7 @@ jobs: integration-tests: needs: build + timeout-minutes: 20 strategy: matrix: node-version: [18]