-
Notifications
You must be signed in to change notification settings - Fork 14
/
.travis.yml
73 lines (62 loc) · 1.28 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
language: node_js
node_js:
- "6"
sudo: false
cache:
directories:
- $HOME/.npm
- $HOME/.cache # includes bowers cache
.disable_global: &disable_global
node_js: false
cache: false
before_install: false
install: false
before_script: false
script: false
after_success: false
before_deploy: false
deploy: false
# env forces jobs to be created from the top level settings
env:
jobs:
include:
- <<: *disable_global
stage: moban
language: python
python: 3.6
cache: pip
install: pip install moban
script: .ci/check_moban.sh
- <<: *disable_global
stage: lint
language: python
python: 3.6
cache: pip
before_install:
- export PATH=$PATH:./node_modules/.bin
- export NODE_PATH=$NODE_PATH:./node_modules
install:
- pip install coala-bears
- npm install
script: coala --non-interactive -V
before_install:
- npm config set spin false
before_script:
- bower install
script:
- npm test
after_success:
- codecov
before_deploy:
- ember build --env production
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
keep-history: true
"on":
branch: master
local_dir: dist
name: Deployment Bot
email: [email protected]