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: