Skip to content

Commit 42da2c3

Browse files
committed
Set timeout for all GitHub actions
1 parent 62ac23c commit 42da2c3

File tree

10 files changed

+14
-4
lines changed

10 files changed

+14
-4
lines changed

.github/workflows/build-private.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ name: Build - Private
1515
jobs:
1616
build:
1717
runs-on: ubuntu-latest
18+
timeout-minutes: 10
19+
1820
steps:
1921
- name: "Check out code"
2022
uses: actions/checkout@v4

.github/workflows/build-public.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ name: Build - Public
1515
jobs:
1616
build:
1717
runs-on: ubuntu-latest
18+
timeout-minutes: 10
19+
1820
steps:
1921
- name: "Check out code"
2022
uses: actions/checkout@v4

.github/workflows/generate-api-docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
jobs:
77
api_docs:
88
runs-on: ubuntu-latest
9+
timeout-minutes: 10
910

1011
services:
1112
pgsql_test:

.github/workflows/npm-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
8+
timeout-minutes: 10
99

1010
steps:
1111
- name: "Checkout code"

.github/workflows/npm-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
8+
timeout-minutes: 10
99

1010
steps:
1111
- name: "Checkout code"

.github/workflows/npm-typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
8+
timeout-minutes: 10
99

1010
steps:
1111
- name: "Checkout code"

.github/workflows/phpstan.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on: push
33
jobs:
44
phpstan:
55
runs-on: ubuntu-latest
6+
timeout-minutes: 10
67

78
steps:
89
- name: "Checkout code"

.github/workflows/phpunit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on: push
33
jobs:
44
phpunit:
55
runs-on: ubuntu-latest
6+
timeout-minutes: 10
67

78
services:
89
pgsql_test:

.github/workflows/pint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on: push
33
jobs:
44
pint:
55
runs-on: ubuntu-latest
6+
timeout-minutes: 10
7+
68
steps:
79
- name: "Checkout code"
810
uses: actions/checkout@v4

.github/workflows/playwright.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Playwright Tests
22
on: [push]
33
jobs:
44
test:
5-
timeout-minutes: 60
65
runs-on: ubuntu-latest
6+
timeout-minutes: 60
7+
78
services:
89
mailpit:
910
image: 'axllent/mailpit:latest'

0 commit comments

Comments
 (0)