加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 597 Bytes
一键复制 编辑 原始数据 按行查看 历史
iamkun 提交于 2022-07-20 00:55 . ci: fix node 18 travis issue
language: node_js
cache:
directories:
- ~/.npm
- node_modules
node_js:
- '16'
- '14'
- '12'
install:
- npm install -g codecov
- npm install
script:
- npm run lint
- npm test
- codecov
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
npx travis-deploy-once --pro && npm run build && npm run babel && npm install -g @semantic-release/changelog @semantic-release/git semantic-release && semantic-release && echo release success && curl ${TriggerUrl} && npm run test:sauce;
fi
branches:
only:
- master
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化