25 lines
498 B
YAML
25 lines
498 B
YAML
language: node_js
|
|
node_js:
|
|
- "lts/*"
|
|
|
|
env:
|
|
- MOZ_HEADLESS=1
|
|
|
|
# Setup headless Chrome support
|
|
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-the-Chrome-addon-in-the-headless-mode
|
|
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
|
|
|
|
notifications:
|
|
email: false
|
|
irc: "irc.mozilla.org#filer"
|