Skip to content

Commit 7bbda7f

Browse files
ci: Increase npm install timeout to 20m
1 parent 7e01e56 commit 7bbda7f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ build_docker_image: &build_docker_image
4545
command: |
4646
source buildenvvar
4747
./build.sh
48+
no_output_timeout: 20m
4849
jobs:
4950
# Build & Deploy against development backend
5051
"build-dev":
@@ -286,7 +287,10 @@ jobs:
286287
- checkout
287288
- restore_cache:
288289
key: test-node-modules-{{ checksum "package-lock.json" }}
289-
- run: npm install
290+
- run:
291+
name: App npm install
292+
command: npm install
293+
no_output_timeout: 20m
290294
- save_cache:
291295
key: test-node-modules-{{ checksum "package-lock.json" }}
292296
paths:

0 commit comments

Comments
 (0)