appveyor.yml 497 B

12345678910111213141516171819202122
  1. # Test against the latest version of this Node.js version
  2. environment:
  3. nodejs_version: "8"
  4. # Install scripts. (runs after repo cloning)
  5. install:
  6. # Get the latest stable version of Node.js or io.js
  7. - ps: Install-Product node $env:nodejs_version
  8. # install modules
  9. - npm install
  10. # Output useful info for debugging.
  11. - node --version
  12. - npm --version
  13. # Post-install test scripts.
  14. test_script:
  15. - npm run lint
  16. - npm run test:all
  17. - npm run build
  18. # Don't actually build.
  19. build: off