From 6f11039186ff0f3aa816b060831e57a2eb2a0552 Mon Sep 17 00:00:00 2001 From: ndrg13 <72130242+ndrg13@users.noreply.github.com> Date: Thu, 5 Nov 2020 12:24:01 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6643dfa..51254db 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: build: docker: - - image: circleci/node:12 # the primary container, where your job's commands are run + - image: circleci/node:13 # the primary container, where your job's commands are run auth: username: nicodrg password: Ndrg100394 # context / project UI env-var reference @@ -19,14 +19,8 @@ jobs: name: Save Yarn package cache key: npm-v1-dependencies-{{ checksum "yarn.lock" }} paths: - - ./node_modules - + - ./.cache/yarn lint: - docker: - - image: circleci/node:12 - auth: - username: nicodrg - password: Ndrg100394 steps: - checkout - restore_cache: @@ -39,13 +33,7 @@ jobs: - run: name: Format code with prettier command: yarn format:check - test: - docker: - - image: circleci/node:12 - auth: - username: nicodrg - password: Ndrg100394 steps: - checkout - restore_cache: @@ -55,7 +43,6 @@ jobs: - run: name: Run test with jest command: yarn test:ci - workflows: version: 2 integration: