We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7355a0 commit 904942bCopy full SHA for 904942b
.circleci/config.yml
@@ -0,0 +1,11 @@
1
+version: 2.1
2
+jobs:
3
+ build:
4
+ docker:
5
+ - image: cimg/node:17.2.0 # the primary container, where your job's commands are run
6
+ auth:
7
+ username: mydockerhub-user
8
+ password: $DOCKERHUB_PASSWORD # context / project UI env-var reference
9
+ steps:
10
+ - checkout # check out the code in the project directory
11
+ - run: echo "hello world" # run the `echo` command
0 commit comments