check yarn lock

This commit is contained in:
Tommy Parnell
2018-01-03 01:14:40 -05:00
parent 82b29bdea0
commit 02c462f28e

View File

@@ -22,7 +22,7 @@ jobs:
# Download and cache dependencies # Download and cache dependencies
- restore_cache: - restore_cache:
keys: keys:
- v1-dependencies-{{ checksum "package.json" }} - v1-dependencies-{{ checksum "yarn.lock" }}
# fallback to using the latest cache if no exact match is found # fallback to using the latest cache if no exact match is found
- v1-dependencies- - v1-dependencies-
@@ -31,7 +31,7 @@ jobs:
- save_cache: - save_cache:
paths: paths:
- node_modules - node_modules
key: v1-dependencies-{{ checksum "package.json" }} key: v1-dependencies-{{ checksum "yarn.lock" }}
# run tests! # run tests!
- run: yarn run build - run: yarn run build