diff --git a/tests/fixtures/default/.github/workflows/ci.yml b/tests/fixtures/default/.github/workflows/ci.yml index 967e301..eb9e3b1 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 78b61e2..3f0f66a 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 a02b804..8f01c3a 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 e1f59f5..907ad3a 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