From 3c529fc33951eca72beb8c9cb29eb0031b91dfad Mon Sep 17 00:00:00 2001 From: ndrg13 <72130242+ndrg13@users.noreply.github.com> Date: Thu, 5 Nov 2020 18:04:02 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f87430a..95c2d98 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,14 +1,14 @@ version: 2.1 executors: - my-executor: + node-executor: docker: - image: circleci/node:12 auth: - username: nicodrg - password: Ndrg100394 + username: $DOCKERHUB_LOGIN + password: $DOCKERHUB_PASSWORD jobs: build: - executor: my-executor + executor: node-executor steps: - checkout - run: @@ -20,7 +20,7 @@ jobs: paths: - ./node_modules lint: - executor: my-executor + executor: node-executor steps: - checkout - restore_cache: @@ -30,7 +30,7 @@ jobs: name: Analyse code with tslint and format with prettier command: yarn lint && yarn format:check test: - executor: my-executor + executor: node-executor steps: - checkout - restore_cache: