# http://www.appveyor.com/docs/appveyor-yml # Test against these versions of Node.js. environment: matrix: - nodejs_version: "4" cache: - '%LOCALAPPDATA%\Yarn' - '%APPDATA%\Roaming\bower' # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node 0.STABLE.latest - ps: Install-Product node $env:nodejs_version # Install PhantomJS - choco install phantomjs --version 2.0.0 -y - set path=%path%;C:\ProgramData\chocolatey\lib\PhantomJS\tools\ # Typical npm stuff. - md C:\nc - appveyor-retry yarn install # Post-install test scripts. test_script: # Output useful info for debugging. - cmd: yarn run test-appveyor - cmd: yarn run test:optional-features - cmd: yarn run test:production - cmd: yarn run node-tests # Don't actually build. build: off # Set build version format here instead of in the admin panel. version: "{build}"