mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-21 20:07:27 +00:00
25 lines
435 B
YAML
25 lines
435 B
YAML
sudo: false
|
|
language: node_js
|
|
cache:
|
|
yarn: true
|
|
directories:
|
|
- bower_components
|
|
install:
|
|
- yarn install
|
|
- ./node_modules/.bin/bower install
|
|
addons:
|
|
firefox: latest
|
|
apt:
|
|
sources:
|
|
- google-chrome
|
|
packages:
|
|
- google-chrome-stable
|
|
script:
|
|
- npm run build
|
|
- npm run test
|
|
- xvfb-run wct
|
|
- if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then wct --plugin sauce; fi
|
|
dist: trusty
|
|
addons:
|
|
sauce_connect: true
|