From 72d45fca1feb279fdc466f4cfa3234d75f45120f Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Wed, 10 Jan 2024 04:48:30 -0500 Subject: [PATCH] Add timeout to CI since Windows runners seem to continue getting stuck --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5cdd48d..9b3563b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,6 +8,7 @@ jobs: deno: name: Deno format and lint runs-on: ubuntu-latest + timeout-minutes: 15 steps: - uses: actions/checkout@v4 - uses: denoland/setup-deno@v1 @@ -18,6 +19,7 @@ jobs: test: runs-on: ${{ matrix.os }} + timeout-minutes: 15 strategy: fail-fast: true matrix: @@ -54,6 +56,7 @@ jobs: static-validation: runs-on: ubuntu-latest + timeout-minutes: 15 steps: - uses: actions/checkout@v4 - uses: taiki-e/install-action@just