We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dacd4ab commit e0b78a4Copy full SHA for e0b78a4
2 files changed
.github/workflows/git.ci.yml
.travis.yml
@@ -0,0 +1,29 @@
1
+# 指定运行环境
2
+language: node_js
3
+
4
+node_js:
5
+ - lts/*
6
7
+branches:
8
+ only:
9
+ - develop
10
11
+jobs:
12
+ include:
13
+ - name: "Push Compile"
14
+ if: type = push
15
+ install: yarn install
16
+ before_script:
17
+ - export TZ='Asia/Shanghai'
18
+ - rm -rf dist
19
+ - rm -rf examples/dist
20
+ script:
21
+ - yarn dev
22
+ - yarn build
23
+ after_success:
24
+ - git config --global user.name "桔子"
25
+ - git config --global user.email "juzi214032@qq.com"
26
+ - git add -A
27
+ - "git commit -m 'build: Travis CI automatic compilation'"
28
+ - git pull --rebase
29
+ - git push "https://juzi214032:${GITHUB_TOKEN}@github.com/TaleLin/lin-ui" HEAD:develop
0 commit comments