Skip to content

Commit

Permalink
Set timeout for all GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
korridor committed Jul 1, 2024
1 parent 62ac23c commit 42da2c3
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-private.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ name: Build - Private
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: "Check out code"
uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ name: Build - Public
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: "Check out code"
uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/generate-api-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
jobs:
api_docs:
runs-on: ubuntu-latest
timeout-minutes: 10

services:
pgsql_test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on: [push]

jobs:
build:

runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: "Checkout code"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on: [push]

jobs:
build:

runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: "Checkout code"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on: [push]

jobs:
build:

runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: "Checkout code"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on: push
jobs:
phpstan:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: "Checkout code"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on: push
jobs:
phpunit:
runs-on: ubuntu-latest
timeout-minutes: 10

services:
pgsql_test:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ on: push
jobs:
pint:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: "Checkout code"
uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: Playwright Tests
on: [push]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
timeout-minutes: 60

services:
mailpit:
image: 'axllent/mailpit:latest'
Expand Down

0 comments on commit 42da2c3

Please sign in to comment.