Fallback to using the latest cache if no exact match is found

feature/default_network_editable
Bruno Barbieri 6 years ago committed by GitHub
parent c567a4b8f3
commit a875caa20c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      .circleci/config.yml

@ -101,7 +101,10 @@ jobs:
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
keys:
- dependency-cache-{{ checksum "package-lock.json" }}
# fallback to using the latest cache if no exact match is found
- dependency-cache-
- run:
name: Install deps via npm
command: |

Loading…
Cancel
Save