Skip to content

Commit 82271a0

Browse files
committed
Add 30 minute job timeout
1 parent b433aa3 commit 82271a0

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

.github/workflows/format.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
jobs:
1414
fix:
1515
runs-on: ubuntu-20.04
16+
timeout-minutes: 30
1617
steps:
1718
- name: Checkout
1819
uses: actions/checkout@v2

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-20.04
12+
timeout-minutes: 30
1213
strategy:
1314
matrix:
1415
node:
@@ -26,6 +27,7 @@ jobs:
2627
run: npm test
2728
lint:
2829
runs-on: ubuntu-20.04
30+
timeout-minutes: 30
2931
strategy:
3032
matrix:
3133
node:
@@ -43,6 +45,7 @@ jobs:
4345
run: npm run lint
4446
build:
4547
runs-on: ubuntu-20.04
48+
timeout-minutes: 30
4649
strategy:
4750
matrix:
4851
node:

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
jobs:
1010
npm:
1111
runs-on: ubuntu-20.04
12+
timeout-minutes: 30
1213
steps:
1314
- name: Checkout
1415
uses: actions/checkout@v2
@@ -25,6 +26,7 @@ jobs:
2526
token: ${{ secrets.NPM_TOKEN }}
2627
github:
2728
runs-on: ubuntu-20.04
29+
timeout-minutes: 30
2830
steps:
2931
- name: Checkout
3032
uses: actions/checkout@v2

.github/workflows/version.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
jobs:
1414
release:
1515
runs-on: ubuntu-20.04
16+
timeout-minutes: 30
1617
steps:
1718
- name: Checkout
1819
uses: actions/checkout@v2

0 commit comments

Comments
 (0)