From 49b80e4722ebcaa259f331d8d6c96d034b46b071 Mon Sep 17 00:00:00 2001 From: Jonatan Nilsson Date: Sun, 22 Jul 2018 11:39:37 +0000 Subject: [PATCH] Replace travis with circleci --- .circleci/config.yml | 17 +++++++++++++++++ .travis.yml | 23 ----------------------- 2 files changed, 17 insertions(+), 23 deletions(-) create mode 100644 .circleci/config.yml delete mode 100644 .travis.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 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index cb67b54..0000000 --- a/.travis.yml +++ /dev/null @@ -1,23 +0,0 @@ -language: node_js - -os: - - linux - - osx - -env: - - SKIP_DTRACE=1 - -node_js: - - '0.10' - - '0.12' - - '4' - - '5' - - '6' - - 'node' - - -# Gives us faster boot time, see https://docs.travis-ci.com/user/ci-environment/ -sudo: false - -script: - - npm test