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

11 行
328 B

  1. language: node_js
  2. node_js:
  3. - node
  4. - lts/*
  5. script:
  6. - npm run lint
  7. # test-coverage will also run the tests, but does not print helpful output upon test failure.
  8. # So we also run the tests separately.
  9. - npm run test
  10. - npm run test-coverage && cat coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf coverage