-
Notifications
You must be signed in to change notification settings - Fork 66
/
.travis.yml
37 lines (37 loc) · 945 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
language: node_js
node_js:
- "6"
before_install:
- git config --global push.default matching
- git config --global user.name "erguotou"
- git config --global user.email "[email protected]"
install:
- npm install -g vue-cli
- npm install
script:
- rm -rf ../vf-backend
- rm -rf ../vf-mock
- node script/generate.js
- echo 'shell pwd'
- pwd
- cd ../vf-mock
- sed -i '4d' .gitignore
- npm install
- npm run remove:mock
- npm run build
- git init
- git add -A
- git commit -m "Auto commit"
- git push -u https://[email protected]/erguotou520/vue-fullstack.git HEAD:vf-mock --force
- cd ../vf-backend
- sed -i '4d' .gitignore
- npm install
- npm run build
- git init
- git add -A
- git commit -m "Auto commit"
- git push -u https://[email protected]/erguotou520/vue-fullstack.git HEAD:vf-backend --force
cache:
directories:
- node_modules
- $(npm config get prefix)/vue-cli