forked from ishara/kendo-angular-component-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
39 lines (39 loc) · 715 Bytes
/
.travis.yml
File metadata and controls
39 lines (39 loc) · 715 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
sudo: false
language: node_js
cache:
directories:
- node_modules
- typings
notifications:
email: false
node_js:
- '4'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm i -g npm@^3.8.0
before_script:
- "npm prune"
- "npm update"
- "export CHROME_BIN=chromium-browser"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 3" # give xvfb some time to start
script:
- "npm run typings &>/dev/null"
- npm run lint
- npm run test
- npm run e2e
- npm run build-package
- npm run build-cdn
after_success:
- npm run semantic-release
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"