From 9d53c8f930fc6437430a01c08f0e204947cc86c3 Mon Sep 17 00:00:00 2001 From: ndrg13 <72130242+ndrg13@users.noreply.github.com> Date: Thu, 5 Nov 2020 12:56:22 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 51254db..6539f4b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,11 +1,14 @@ version: 2.1 -jobs: - build: - docker: - - image: circleci/node:13 # the primary container, where your job's commands are run +executors: + my-executor: + docker: + - image: circleci/node:13 auth: username: nicodrg - password: Ndrg100394 # context / project UI env-var reference + password: Ndrg100394 +jobs: + build: + executor: my-executor steps: - checkout - restore_cache: @@ -21,6 +24,7 @@ jobs: paths: - ./.cache/yarn lint: + executor: my-executor steps: - checkout - restore_cache: @@ -34,6 +38,7 @@ jobs: name: Format code with prettier command: yarn format:check test: + executor: my-executor steps: - checkout - restore_cache: