# appveyor file # http://www.appveyor.com/docs/appveyor-yml init: - git config --global core.autocrlf input cache: - C:\Users\appveyor\.node-gyp - '%AppData%\npm-cache' # what combinations to test environment: global: ELECTRON_NO_ATTACH_CONSOLE: true npm_config_disturl: https://atom.io/download/atom-shell npm_config_runtime: electron npm_config_target: 1.1.1 npm_config_arch: x64 matrix: - nodejs_version: 6.1.0 install: - ps: Install-Product node $env:nodejs_version x64 - npm install -g npm - npm install --build-from-source - npm install -g bower - bower install build: off test_script: - node --version - npm --version - cmd: npm test notifications: - provider: Webhook url: https://webhooks.gitter.im/e/3d5ed28fa9ae4c25f46f on_build_success: false on_build_failure: true on_build_status_changed: true