From e116f2c2a10dda99343a42e635aab1204d496cba Mon Sep 17 00:00:00 2001
From: G33tha <geetha.p@optit.co>
Date: Sun, 9 Dec 2018 22:44:03 +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 0000000000..27c2827f72
--- /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
+
-- 
GitLab