6f8869fb77c21063d00dbfe889ea2f4585b5eb0fb5f4c7e9a6e8a34a81eed439f642ee95dcf7430d96b09731a3e27f411ce6ccaafacc9a17b76b8bb5d42d7c 468 B

123456789101112131415161718192021
  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. # Post-install test scripts.
  11. test_script:
  12. # Output useful info for debugging.
  13. - node --version
  14. - npm --version
  15. # run tests
  16. - npm test
  17. # Don't actually build.
  18. build: off