-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.travis.yml
More file actions
44 lines (36 loc) · 702 Bytes
/
.travis.yml
File metadata and controls
44 lines (36 loc) · 702 Bytes
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
sudo: required
dist: trusty
#install google chrome, using addons
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
language: node_js
node_js:
- '10'
branches:
only:
- master
- /^greenkeeper/.*$/
cache:
directories:
- node_modules
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# - npm install --quiet -g gulp-cli
#script: gulp test:ci
script:
# - ng test --watch false -cc
# - npm run e2e
- npm run build:prerender
after_success: gulp coveralls
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: dist
on:
branch: master