加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 574 Bytes
一键复制 编辑 原始数据 按行查看 历史
ryanml 提交于 2019-11-25 03:00 . Adding storybook build to Travis CI
language: node_js
# lock node.js to the active LTS
# see https://nodejs.org/en/about/releases/ for info
node_js:
- "10.15.3"
dist: trusty
sudo: required
branches:
only:
- master
- /\d+\.\d+\.x/
cache:
directories:
- $HOME/.npm
- node_modules
env:
- TEST_SUITE=lint
- TEST_SUITE=build-storybook
- TEST_SUITE=test-security
- TEST_SUITE=test-unit
- TEST_SUITE=pep8
before_install:
- npm i -g npm
- npm --version
- sudo pip install --upgrade pip
- sudo pip install pycodestyle
install:
- npm i
script:
- npm run $TEST_SUITE
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化