From 07ba06276e5db917b782b4921395482d7ecc98c2 Mon Sep 17 00:00:00 2001 From: Jonatan Nilsson Date: Sun, 22 Jul 2018 12:09:19 +0000 Subject: [PATCH] circleci: Add automatic builds --- .circleci/config.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..1e4524a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,17 @@ +version: 2 +jobs: + build: + docker: + - image: node:6-alpine + working_directory: ~/mv-lite + steps: + - run: + name: Install SSH & Git + command: apk add --no-cache bash git openssh + - checkout + - run: + name: Install dependancies + command: npm install + - run: + name: Run tests + command: npm test