replace cache pattern since we messed it up

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

View File

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