From 898cf46457f61eb8d3f8e2292bafb8de6d8b9027 Mon Sep 17 00:00:00 2001 From: KheliaNibaruta <73180785+KheliaNibaruta@users.noreply.github.com> Date: Thu, 5 Nov 2020 16:16:45 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a862a5f..248facc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,22 +16,19 @@ jobs: steps: - checkout - restore_cache: - key: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn global add node-gyp && yarn install - save_cache: paths: - ~./cache/yarn - key: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} lint: docker: - image: cimg/node:12.18 steps: - checkout - restore_cache: - key: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn lint && yarn format:check test: docker: @@ -39,6 +36,5 @@ jobs: steps: - checkout - restore_cache: - key: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn test:ci