mirror of
https://github.com/woodchen-ink/clash-and-dashboard.git
synced 2025-07-18 05:51:56 +08:00
23 lines
384 B
YAML
23 lines
384 B
YAML
language: node_js
|
|
sudo: false
|
|
node_js:
|
|
- "stable"
|
|
cache:
|
|
directories:
|
|
- "$HOME/.npm"
|
|
install:
|
|
- "npm ci"
|
|
script:
|
|
- "npm run lint"
|
|
before_deploy:
|
|
- "npm run build"
|
|
deploy:
|
|
provider: pages
|
|
skip-cleanup: true
|
|
local-dir: dist
|
|
github-token: $GITHUB_TOKEN
|
|
on:
|
|
repo: Dreamacro/clash-dashboard
|
|
branch: master
|
|
tags: true
|