Skip to content

Commit 904942b

Browse files
authored
Create config.yml
1 parent e7355a0 commit 904942b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.circleci/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)