提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
371 B

  1. language: node_js
  2. sudo: false
  3. node_js:
  4. - "10"
  5. - "9"
  6. - "8"
  7. - "6"
  8. - "4"
  9. - "iojs"
  10. - "0.12"
  11. - "0.10"
  12. - "0.8"
  13. before_install:
  14. # Old npm certs are untrusted https://github.com/npm/npm/issues/20191
  15. - 'if [ "${TRAVIS_NODE_VERSION}" = "0.6" ] || [ "${TRAVIS_NODE_VERSION}" = "0.8" ]; then export NPM_CONFIG_STRICT_SSL=false; fi'
  16. - 'nvm install-latest-npm'