# http://www.appveyor.com/docs/appveyor-yml # Test against these versions of Io.js and Node.js. environment: matrix: - nodejs_version: "6" # - nodejs_version: "7" # 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 --progress=false --loglevel=warn install # Post-install test scripts. test_script: - node --version - npm --version - npm run eslint - npm run tslint - npm run test:chrome # Don't actually build. build: off # Set build version format here instead of in the admin panel. version: "{build}"