From f3205dfd76c0f0b9eacabf21cf4b387ba02c246a Mon Sep 17 00:00:00 2001 From: Ben Teichman Date: Thu, 13 Apr 2017 13:25:00 -0400 Subject: [PATCH] fix(CircleCI): include yarn.lock in cache test --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 67f53db..744dd56 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,12 +8,12 @@ jobs: steps: - checkout - restore_cache: - key: projectname-{{ .Branch }}-{{ checksum "package.json" }} + key: mocha-suite-{{ .Branch }}-{{ checksum "package.json" "yarn.lock" }} - run: name: Install command: yarn - save_cache: - key: projectname-{{ .Branch }}-{{ checksum "package.json"}} + key: mocha-suite-{{ .Branch }}-{{ checksum "package.json" "yarn.lock" }} paths: - "~/node_modules" - run: