From 02c462f28e17cb3374314fa2b334028bd88c2b5e Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Wed, 3 Jan 2018 01:14:40 -0500 Subject: [PATCH] check yarn lock --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 50474b5..aa8c67d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ jobs: # Download and cache dependencies - restore_cache: keys: - - v1-dependencies-{{ checksum "package.json" }} + - v1-dependencies-{{ checksum "yarn.lock" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- @@ -31,7 +31,7 @@ jobs: - save_cache: paths: - node_modules - key: v1-dependencies-{{ checksum "package.json" }} + key: v1-dependencies-{{ checksum "yarn.lock" }} # run tests! - run: yarn run build \ No newline at end of file