aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
diff options
context:
space:
mode:
authorBruno Barbieri <bruno.barbieri@consensys.net>2018-07-07 02:48:39 +0800
committerGitHub <noreply@github.com>2018-07-07 02:48:39 +0800
commita875caa20cbe1ed3196ebb50e57f04190d6e6633 (patch)
tree17578fca11e4ac1d0f69e0ca5649017f9902fd02 /.circleci/config.yml
parentc567a4b8f3d81c9e8f8fe6f9795e57d5b57bdcce (diff)
downloadtangerine-wallet-browser-a875caa20cbe1ed3196ebb50e57f04190d6e6633.tar
tangerine-wallet-browser-a875caa20cbe1ed3196ebb50e57f04190d6e6633.tar.gz
tangerine-wallet-browser-a875caa20cbe1ed3196ebb50e57f04190d6e6633.tar.bz2
tangerine-wallet-browser-a875caa20cbe1ed3196ebb50e57f04190d6e6633.tar.lz
tangerine-wallet-browser-a875caa20cbe1ed3196ebb50e57f04190d6e6633.tar.xz
tangerine-wallet-browser-a875caa20cbe1ed3196ebb50e57f04190d6e6633.tar.zst
tangerine-wallet-browser-a875caa20cbe1ed3196ebb50e57f04190d6e6633.zip
Fallback to using the latest cache if no exact match is found
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 401e3b309..c9c827a1c 100644
--- a/.circleci/config.yml
+++ b/.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: |