Browse Source

cache correction indentation

pull/3/merge
Gianni GIUDICE 6 years ago
parent
commit
7a410de52e
  1. 8
      .circleci/config.yml

8
.circleci/config.yml

@ -1,7 +1,7 @@
version: 2.1 version: 2.1
jobs: jobs:
build: build:
docker:
docker:
- image: cimg/node:14.10.1 # the primary container, where your job's commands are run - image: cimg/node:14.10.1 # the primary container, where your job's commands are run
auth: auth:
username: mydockerhub-user username: mydockerhub-user
@ -10,8 +10,8 @@ jobs:
- checkout # check out the code in the project directory - checkout # check out the code in the project directory
- run: yarn global add node-gyp && yarn install - run: yarn global add node-gyp && yarn install
- restore_cache: - restore_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
key: yarn-packages-{{ checksum "yarn.lock" }}
-save_cache: -save_cache:
key: yarn-packages-{{ checksum "yarn.lcok" }}
key: yarn-packages-{{ checksum "yarn.lcok" }}
-paths: -paths:
- ~/.cache/yarn
- ~/.cache/yarn
Loading…
Cancel
Save