From 2c6d11af2fbc439176d020488643287e7af2f26a Mon Sep 17 00:00:00 2001 From: MTLantoine Date: Mon, 2 Nov 2020 21:59:28 +0100 Subject: [PATCH] . --- .circleci/config.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index df88828..9e68255 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: build: docker: &shared_docker - - image: cimg/node:14.10.1 # the primary container, where your job's commands are run + - image: circleci/node:12 steps: - checkout # check out the code in the project directory - restore_cache: @@ -55,6 +55,8 @@ workflows: build_test: jobs: - build - - lint - - test + - lint: + requires: build + - test: + requires: build # - e2e_test