From f75a391f9bb2b4d649a5e1deeb3947e83a8fc352 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sun, 13 Jan 2019 01:01:37 +0330 Subject: [PATCH] circleci: change cache key --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b1cbff5e8f..866afd8ca7 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -48,7 +48,7 @@ jobs: # Restore cache - restore_cache: - key: yarn-{{ checksum "yarn.lock" }} + key: lock-{{ checksum "yarn.lock" }} # Install dependencies - run: @@ -57,7 +57,7 @@ jobs: # Save cache - save_cache: - key: yarn-{{ checksum "yarn.lock" }} + key: lock-{{ checksum "yarn.lock" }} paths: - node_modules - packages/*/node_modules