From ee495e058843774c56148dff6a46ac351a9099c6 Mon Sep 17 00:00:00 2001 From: NicolasLepinette <55684429+NicolasLepinette@users.noreply.github.com> Date: Mon, 2 Nov 2020 11:34:08 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 40ddd5a..652738f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,10 +1,8 @@ +workflows: jobs: build: docker: - image: cimg/node:14.10.1 # the primary container, where your job's commands are run - auth: - username: mydockerhub-user - password: $DOCKERHUB_PASSWORD # context / project UI env-var reference steps: - checkout - run: yarn global add node-gyp @@ -13,6 +11,6 @@ jobs: - run: yarn format:check - run: yarn test:ci - save_cache: - key: yarn-packages-{{ checksum "yarn.lcok" }} + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} paths: - ./node_modules