Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit b1e569d

Browse files
filipesilvaclydin
authored andcommitted
ci: use npm5 on circleci
1 parent 88926a5 commit b1e569d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
_defaults: &defaults
44
working_directory: ~/ng
55
docker:
6-
- image: angular/ngcontainer
6+
- image: angular/ngcontainer:0.0.5
77

88
_post_checkout: &post_checkout
99
post: git pull --ff-only origin "refs/pull/${CI_PULL_REQUEST//*pull\//}/merge"
@@ -17,7 +17,7 @@ jobs:
1717
- restore_cache:
1818
key: angular_devkit-{{ checksum "package-lock.json" }}
1919

20-
- run: npm install --quiet
20+
- run: npm install --no-save
2121
- run: npm run lint
2222

2323
validate:
@@ -27,7 +27,7 @@ jobs:
2727
- restore_cache:
2828
key: angular_devkit-{{ checksum "package-lock.json" }}
2929

30-
- run: npm install --quiet
30+
- run: npm install --no-save
3131
- run: npm run validate
3232

3333
test:
@@ -38,7 +38,7 @@ jobs:
3838
- restore_cache:
3939
key: angular_devkit-{{ checksum "package-lock.json" }}
4040

41-
- run: npm install --quiet
41+
- run: npm install --no-save
4242
- run: npm run test -- --code-coverage --full
4343

4444
integration:
@@ -53,7 +53,7 @@ jobs:
5353
- restore_cache:
5454
key: angular_devkit-integration-aio-{{ checksum "tests/@angular_devkit/build_optimizer/webpack/aio-app/package-lock.json" }}
5555

56-
- run: npm install --quiet
56+
- run: npm install --no-save
5757
- run: xvfb-run -a npm run integration
5858

5959
- save_cache:

0 commit comments

Comments
 (0)