From 3fe67aef33fd47b1c285305a034e597485ec6347 Mon Sep 17 00:00:00 2001 From: sipe-daniel Date: Thu, 5 Nov 2020 15:13:25 +0100 Subject: [PATCH] feat(config.yml): Hello CircleCI I added a new folder(.circleci) with a new file (config.yml) inside. I wrote a hello world code in the config.yml --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..489411b --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,13 @@ +version: 2.1 +workflows: + version: 2.1 + build_and_test: + jobs: + - build +jobs: + build: + docker: + - image: cimg/node:14.10.1 # the primary container, where your job's commands are run + steps: + - checkout # check out the code in the project directory + - run: echo "hello world" # run the `echo` command \ No newline at end of file