replace cache pattern since we messed it up

This commit is contained in:
Ibby Hadeed 2017-03-28 20:06:28 -04:00
parent 75ee0418bf
commit e474b2987f

View File

@ -19,12 +19,12 @@ jobs:
paths:
- ~/ionic-site/
- restore_cache:
key: {{ checksum "package.json" }}-node-modules
key: node_modules_{{ checksum "package.json" }}
- run:
name: Install node modules
command: npm i
- save_cache:
key: {{ checksum "package.json" }}-node-modules # used cached node_modules if package.json didn't change
key: node_modules_{{ checksum "package.json" }} # used cached node_modules if package.json didn't change
paths:
- ~/ionic-native/node_modules/
- run: