From 839961551021338c8052c6932a4e02536ea4cc69 Mon Sep 17 00:00:00 2001 From: Louis Dutoit Date: Mon, 2 Nov 2020 10:18:04 +0100 Subject: [PATCH] lint --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cc51a31..a47e43d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 jobs: - install: - docker: + install: &shared_docker + docker: - image: cimg/node:14.10.1 # the primary container, where your job's commands are run auth: username: mydockerhub-user @@ -13,6 +13,6 @@ jobs: keys : - npm-v1-dependencies-{{ checksum "yarn.lock" }} lint: - steps: - - run: yarn lint && yarn format:check - \ No newline at end of file + <<: *shared_docker + steps: + - run: yarn lint && yarn format:check \ No newline at end of file