diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 0a0b43dde..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,39 +0,0 @@ -# AppVeyor file -# http://www.appveyor.com/docs/appveyor-yml -# This file: cloned from https://github.com/gruntjs/grunt/blob/master/appveyor.yml - -# Build version format -version: "{build}" - -# Test against this version of Node.js -environment: - nodejs_version: "Stable" - -build: off - -clone_depth: 10 - -# Fix line endings on Windows -init: - - git config --global core.autocrlf true - -install: - - ps: Install-Product node $env:nodejs_version - - npm install -g npm@6.0.0 - - ps: $env:path = $env:appdata + "\npm;" + $env:path - - npm install - -test_script: - # Output useful info for debugging. - - node --version && npm --version - # We test multiple Windows shells because of prior stdout buffering issues - # filed against Grunt. https://github.com/joyent/node/issues/3584 - - ps: "npm --version # PowerShell" # Pass comment to PS for easier debugging - - npm t - -notifications: - - provider: Webhook - url: https://webhooks.gitter.im/e/cfd8ce5ddee6f3a0b0c9 - on_build_success: false - on_build_failure: true - on_build_status_changed: true