Skip to content

Commit bcc3ec1

Browse files
Increased timeouts to 45 mins
Signed-off-by: Pascal Wilbrink <[email protected]>
1 parent 45b0a6f commit bcc3ec1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build-project.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
build:
1717
name: Build
1818
runs-on: ubuntu-latest
19-
timeout-minutes: 30
19+
timeout-minutes: 45
2020

2121
steps:
2222
- name: Checkout
@@ -39,13 +39,15 @@ jobs:
3939
node-version: '14.x'
4040

4141
- name: Test application with npm
42+
timeout-minutes: 45
4243
if: ${{ github.event_name == 'push' }}
4344
run: |
4445
npm ci
4546
npm run-script test
4647
4748
- name: Build application with npm
4849
if: ${{ github.event_name == 'pull_request' }}
50+
timeout-minutes: 45
4951
run: |
5052
npm ci
5153
npm run-script build

.github/workflows/release-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
push_to_registry:
1313
name: Build and publish
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 30
15+
timeout-minutes: 45
1616

1717
steps:
1818
- name: Checkout

0 commit comments

Comments
 (0)