加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 731 Bytes
一键复制 编辑 原始数据 按行查看 历史
h7ml 提交于 2022-02-09 15:20 . feat: pnpm
language: node_js
node_js:
- 16.13.0
branchs:
only:
- master
cache:
npm: false
directories:
- "~/.pnpm-store"
before_install:
- curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@6
- pnpm config set store-dir ~/.pnpm-store
- pnpm config set registry https://registry.npmmirror.com
- pnpm lint
- pnpm lint:fix
- pnpm lint:style
install:
- pnpm i --frozen-lockfile
scripts:
- pnpm build
deploy:
provider: pages
local_dir: dist
skip_cleanup: true
# 在 GitHub 上生成的令牌,允许 Travis 推送代码到你的仓库。
# 在仓库对应的 Travis 设置页面中配置,用于安全控制。
github_token: $GIT_TOKEN
keep_history: true
on:
branch: travis-pages
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化