您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.travis.yml 256B

12345678910111213141516
  1. before_script:
  2. - sudo apt-get install libreoffice
  3. language: node_js
  4. node_js:
  5. - stable
  6. install:
  7. - npm install
  8. script:
  9. - npm test
  10. # Send coverage data to Coveralls
  11. after_script: "cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js"