diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e0df3b7..0000000 --- a/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -dist: trusty -sudo: false -language: node_js -node_js: - - "6" - - "lts/*" diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 16c714a..0000000 --- a/Dockerfile +++ /dev/null @@ -1,5 +0,0 @@ -FROM node:6-alpine -ENTRYPOINT [ "harp" ] -WORKDIR /app -COPY . /opt/harp -RUN npm install -g /opt/harp diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 857aba6..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,28 +0,0 @@ -version: "{build}" -os: Windows Server 2012 R2 - -# Test against this version of Node.js -environment: - matrix: - - nodejs_version: "0.12" - - nodejs_version: "4.2" - - nodejs_version: "5.0" - -# Install scripts. (runs after repo cloning) -install: - # Get the latest stable version of Node.js or io.js - - ps: Install-Product node $env:nodejs_version - # install modules - - npm install - -# Post-install test scripts. -test_script: - # Output useful info for debugging. - - node --version - - npm --version - # run tests - - npm test - -# Don't actually build or deploy. -build: off -deploy: off