17 lines
390 B
YAML
17 lines
390 B
YAML
sudo: true
|
|
|
|
language: node_js
|
|
node_js:
|
|
- "lts/*"
|
|
|
|
# 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
|
|
before_install:
|
|
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
|
|
|
|
notifications:
|
|
email: false
|
|
irc: "irc.mozilla.org#filer"
|