diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000000000000000000000000000000000000..27c2827f72aee2104b68c971a5b3e3698093eaa8
--- /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
+