From d06cba425cbdc7241c51eac33e6319537557cca9 Mon Sep 17 00:00:00 2001 From: Tristan Date: Thu, 5 Nov 2020 19:16:42 +0100 Subject: [PATCH] dockerfile + fix jobs --- .circleci/config.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index da0bb79..d65fab5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,14 +2,14 @@ version: 2.1 workflows: workflow1: jobs: - - yarn1 - - lint1: - requires: yarn1 - - test1: - requires: yarn1 - - database1 + - yarn + - lint: + requires: yarn + - test: + requires: yarn + - database jobs: - yarn1: + yarn: docker: - image: 'circlec1/node:12' steps: @@ -21,7 +21,7 @@ jobs: key: yarn-v1-packages-{{ checksum "yarn.lock" }} paths: - ./node_modules - lint1: + lint: docker: - image: 'circleci/node:12' steps: @@ -33,7 +33,7 @@ jobs: key: yarn-v1-packages-{{ checksum "yarn.lock" }} paths: - ./node_modules - test1: + test: docker: - image: 'circleci/node:12' steps: @@ -45,7 +45,7 @@ jobs: key: yarn-v1-packages-{{ checksum "yarn.lock" }} paths: - ./node_modules - database1: + database: docker: - image: 'circleci/node:12' environment: