forked from angular-ui-tree/angular-ui-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (25 loc) · 684 Bytes
/
.travis.yml
File metadata and controls
31 lines (25 loc) · 684 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
language: node_js
node_js:
- "6"
addons:
firefox: "47.0.2"
before_script:
# credits for FF configuration: https://github.com/pouchdb/pouchdb/blob/master/.travis.yml
# Our test-browser.js script uses FIREFOX_BIN to find the Firefox binary
# See https://github.com/travis-ci/travis-ci/issues/4649
- echo "using firefox $(firefox --version)"
- export FIREFOX_BIN=$(which firefox)
- npm install -g bower
- bower install
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- gulp serve &
- sleep 3 # give webserver some time to start
script:
- npm test
after_success:
- npm run coveralls
- npm run codacy
notifications:
- email: false
sudo: false