From 3a019ac943e4b73cf1cbf961e475be66f9f9c85e Mon Sep 17 00:00:00 2001 From: Chris Manson Date: Mon, 4 Mar 2024 14:16:35 +0000 Subject: [PATCH] fix timeout-minutes in test fixtures --- tests/fixtures/default/.github/workflows/ci.yml | 3 +++ tests/fixtures/default/.github/workflows/push-dist.yml | 2 ++ tests/fixtures/pnpm/.github/workflows/ci.yml | 3 +++ tests/fixtures/yarn/.github/workflows/ci.yml | 3 +++ 4 files changed, 11 insertions(+) diff --git a/tests/fixtures/default/.github/workflows/ci.yml b/tests/fixtures/default/.github/workflows/ci.yml index 967e301a..eb9e3b13 100644 --- a/tests/fixtures/default/.github/workflows/ci.yml +++ b/tests/fixtures/default/.github/workflows/ci.yml @@ -15,6 +15,7 @@ jobs: test: name: "Tests" runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v4 @@ -32,6 +33,7 @@ jobs: floating: name: "Floating Dependencies" runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v4 @@ -48,6 +50,7 @@ jobs: name: ${{ matrix.try-scenario }} runs-on: ubuntu-latest needs: 'test' + timeout-minutes: 10 strategy: fail-fast: false diff --git a/tests/fixtures/default/.github/workflows/push-dist.yml b/tests/fixtures/default/.github/workflows/push-dist.yml index 78b61e25..3f0f66ab 100644 --- a/tests/fixtures/default/.github/workflows/push-dist.yml +++ b/tests/fixtures/default/.github/workflows/push-dist.yml @@ -15,6 +15,8 @@ jobs: push-dist: name: Push dist runs-on: ubuntu-latest + timeout-minutes: 10 + steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 diff --git a/tests/fixtures/pnpm/.github/workflows/ci.yml b/tests/fixtures/pnpm/.github/workflows/ci.yml index a02b804c..8f01c3a5 100644 --- a/tests/fixtures/pnpm/.github/workflows/ci.yml +++ b/tests/fixtures/pnpm/.github/workflows/ci.yml @@ -15,6 +15,7 @@ jobs: test: name: "Tests" runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v4 @@ -35,6 +36,7 @@ jobs: floating: name: "Floating Dependencies" runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v4 @@ -54,6 +56,7 @@ jobs: name: ${{ matrix.try-scenario }} runs-on: ubuntu-latest needs: 'test' + timeout-minutes: 10 strategy: fail-fast: false diff --git a/tests/fixtures/yarn/.github/workflows/ci.yml b/tests/fixtures/yarn/.github/workflows/ci.yml index e1f59f5d..907ad3a8 100644 --- a/tests/fixtures/yarn/.github/workflows/ci.yml +++ b/tests/fixtures/yarn/.github/workflows/ci.yml @@ -15,6 +15,7 @@ jobs: test: name: "Tests" runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v4 @@ -32,6 +33,7 @@ jobs: floating: name: "Floating Dependencies" runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v4 @@ -48,6 +50,7 @@ jobs: name: ${{ matrix.try-scenario }} runs-on: ubuntu-latest needs: 'test' + timeout-minutes: 10 strategy: fail-fast: false