1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

circleci - disable npm dep cache (#6288)

This commit is contained in:
kumavis 2019-03-12 21:51:29 +08:00 committed by Whymarrh Whitby
parent 48047f8194
commit cf3e0c2d53

View File

@ -85,9 +85,9 @@ jobs:
- image: circleci/node:8.11.3-browsers
steps:
- checkout
- restore_cache:
keys:
- v{{ .Environment.CACHE_VERSION }}-dependency-cache-{{ checksum "package-lock.json" }}
# - restore_cache:
# keys:
# - v{{ .Environment.CACHE_VERSION }}-dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: Install npm 6 + deps via npm
command: |
@ -96,10 +96,10 @@ jobs:
root: .
paths:
- node_modules
- save_cache:
key: v{{ .Environment.CACHE_VERSION }}-dependency-cache-{{ checksum "package-lock.json" }}
paths:
- node_modules
# - save_cache:
# key: v{{ .Environment.CACHE_VERSION }}-dependency-cache-{{ checksum "package-lock.json" }}
# paths:
# - node_modules
prep-build:
docker: