Browse Source

🐛 : fix cache error

install+cache
Jean-François GAUTREAU 6 years ago
parent
commit
0ace6a7418
  1. 5
      .circleci/config.yml

5
.circleci/config.yml

@ -1,6 +1,6 @@
version: 2.1 version: 2.1
jobs: jobs:
yarn-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:
@ -11,7 +11,6 @@ jobs:
- run: yarn global add node-gyp && yarn install - run: yarn global add node-gyp && yarn install
- npm_cache_key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - npm_cache_key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
workflows: workflows:
version: 2
yarn-build: yarn-build:
jobs: jobs:
- yarn-build
- build
Loading…
Cancel
Save