Browse Source

changed cache

main
Galimede 6 years ago
parent
commit
6afb9c0ab2
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -6,12 +6,12 @@ jobs:
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
key: yarn-packages-v2{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install - run: yarn global add node-gyp && yarn install
- save_cache: - save_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
key: yarn-packages-v2{{ checksum "yarn.lock" }}
paths: paths:
- ~/.cache/yarn
- ./node_modules
check_format: check_format:
docker: docker:
- image: cimg/node:14.10.1 - image: cimg/node:14.10.1

Loading…
Cancel
Save