filer/.travis.yml

33 lines
588 B
YAML
Raw Normal View History

2018-12-20 23:09:31 +00:00
sudo: false
2014-02-17 23:22:38 +00:00
language: node_js
2018-12-20 23:09:31 +00:00
2014-02-17 23:22:38 +00:00
node_js:
- "lts/*"
2018-12-20 23:09:31 +00:00
cache:
directories:
- "node_modules"
os:
- linux
- osx
2018-12-20 23:09:31 +00:00
# Setup headless Firefox and Chrome support
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-the-Chrome-addon-in-the-headless-mode
2018-12-20 23:09:31 +00:00
env:
- MOZ_HEADLESS=1
addons:
chrome: stable
firefox: latest
before_install:
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
after_success:
- npm install -g codecov
- npm run coverage
- codecov
2014-02-18 16:11:05 +00:00
notifications:
email: false
irc: "irc.mozilla.org#filer"