我已按照说明将 CodeClimate 添加到我的.travis.yml
文件中:
language: node_js
script:
- gulp
- npm test
after_script:
- codeclimate < coverage/**/lcov.info
addons:
code_climate:
repo_token: [ my token ]
我的构建中的所有内容都可以正常运行,除了最后的codeclimate
脚本:
[0K$ codeclimate < coverage/**/lcov.info
/home/travis/build.sh: line 41: codeclimate: command not found
我错过了什么?