| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | # http://www.appveyor.com/docs/appveyor-yml# Set build version format here instead of in the admin panelversion: '{build}'# Do not build on gh tagsskip_tags: true# Test against these versions of Node.jsenvironment:  matrix:    # Node versions to run    - nodejs_version: 'Current'    - nodejs_version: 'LTS'# Fix line endings in Windows. (runs before repo cloning)init:  - git config --global core.autocrlf input# Install scripts--runs after repo cloninginstall:  # Install chrome  - choco install -y googlechrome --ignore-checksums  # Install the latest stable version of Node  - ps: Install-Product node $env:nodejs_version  - npm ci# Disable automatic buildsbuild: off# Post-install test scriptstest_script:  # Output debugging info  - node --version  # run tests and run build  - npm run test  - npm run build# Cache node_modules for faster buildscache:  - node_modules -> package.json# remove, as appveyor doesn't support secure variables on pr builds# so `COVERALLS_REPO_TOKEN` cannot be set, without hard-coding in this file#on_success:#- npm run coveralls
 |