From 0ace6a741880fed89bb75e00e666da1412c92d08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20GAUTREAU?= Date: Mon, 2 Nov 2020 09:26:20 +0100 Subject: [PATCH] :bug: : fix cache error --- .circleci/config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5107c15..7f659f3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ version: 2.1 jobs: - yarn-build: + build: docker: - image: cimg/node:14.10.1 # the primary container, where your job's commands are run auth: @@ -11,7 +11,6 @@ jobs: - run: yarn global add node-gyp && yarn install - npm_cache_key: npm-v1-dependencies-{{ checksum "yarn.lock" }} workflows: - version: 2 yarn-build: jobs: - - yarn-build \ No newline at end of file + - build \ No newline at end of file