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