From 7de9fa6b0b4f81c14858322624c7ee619993b060 Mon Sep 17 00:00:00 2001 From: G33tha Date: Sun, 9 Dec 2018 22:38:27 +0530 Subject: [PATCH] Issue #000 feat: added circleci config --- .circleci/config.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000000..27c2827f72a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,25 @@ +version: 2.1 +jobs: + build: + machine: + image: circleci/classic:latest + steps: + - checkout + - run: + name: run build file + command: ./build.sh + test-cases: + docker: + - image: g33tha/node-8.11 + steps: + - checkout + - run: sh test.sh + + +workflows: + version: 2 + build_and_test: + jobs: + - build + #- test-cases +