From 1296557b7a21ca8e745a4944628ea4858160ac66 Mon Sep 17 00:00:00 2001 From: verzelea Date: Mon, 2 Nov 2020 09:26:47 +0100 Subject: [PATCH] Feat: HelloWorld --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..5a296e1 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,8 @@ +version: 2.1 +jobs: + build: + docker: + - image: cimg/node:14.10.1 + steps: + - checkout + - run: echo "hello world" \ No newline at end of file