Browse Source

configuration

main
Youssef Touggani 6 years ago
parent
commit
73c150405f
  1. 20
      .circleci/config.yml

20
.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
Loading…
Cancel
Save