We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17f7d1d commit 6d8c718Copy full SHA for 6d8c718
.circleci/config.yml
@@ -14,8 +14,9 @@ jobs: # a collection of steps
14
- restore_cache: # special step to restore the dependency cache
15
key: dependency-cache-{{ checksum "package-lock.json" }}
16
- run:
17
- name: Install NPM Dependencies
18
- command: npm i
+ name: Install NPM Dependencies if no cache
+ command: |
19
+ [ ! -d "/tmp/node_modules" ] && npm ci
20
- save_cache: # special step to save the dependency cache
21
22
paths:
0 commit comments