From 73c150405f0d203117194e75447c760668010b72 Mon Sep 17 00:00:00 2001 From: Youssef Touggani Date: Thu, 5 Nov 2020 15:50:41 +0100 Subject: [PATCH] configuration --- .circleci/config.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c973e63..e3b120b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,11 +1,11 @@ version: 2.1 -orbs: - # Declare a dependency on the welcome-orb - welcome: circleci/welcome-orb@0.4.1 - # Orchestrate or schedule a set of jobs -workflows: - # Name the workflow "welcome" - welcome: - # Run the welcome/run job in its own container - jobs: - - welcome/run +jobs: + build: + docker: + - image: cimg/node:14.10.1 # the primary container, where your job's commands are run + auth: + username: mydockerhub-user + password: $DOCKERHUB_PASSWORD # context / project UI env-var reference + steps: + - checkout # check out the code in the project directory + - run: echo "hello world" # run the `echo` command