From da12cdac2abc4db03c0c13355f06e2b4da22b2f9 Mon Sep 17 00:00:00 2001 From: KheliaNibaruta <73180785+KheliaNibaruta@users.noreply.github.com> Date: Thu, 5 Nov 2020 16:23:14 +0100 Subject: [PATCH] add lint and test job --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 248facc..36e79ac 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ workflow: jobs: build: docker: - - image: cimg/node:12.18 + - image: cimg/node:14.10.1 steps: - checkout - restore_cache: @@ -24,7 +24,7 @@ jobs: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} lint: docker: - - image: cimg/node:12.18 + - image: cimg/node:14.10.1 steps: - checkout - restore_cache: @@ -32,7 +32,7 @@ jobs: - run: yarn lint && yarn format:check test: docker: - - image: cimg/node:12.18 + - image: cimg/node:14.10.1 steps: - checkout - restore_cache: