diff --git a/.travis.yml b/.travis.yml index da35db54..be5f0a0d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,11 @@ +language: node_js +os: + - "linux" + - "windows" +dist: xenial node_js: + - "12" - "10" - "8" - "6" -sudo: false -language: node_js script: "npm run test" diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 8caf8598..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,21 +0,0 @@ -# Test against the latest version of this Node.js version -environment: - nodejs_version: "10" - -# 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. -build: off