rsnext/.travis.yml
2019-02-20 13:24:02 -06:00

27 lines
569 B
YAML

{
sudo: "required",
dist: "trusty",
addons: {
apt: {
sources: ["google-chrome"],
packages: ["google-chrome-stable"]
}
},
language: "node_js",
node_js: ["8", "10"],
cache: {
directories: ["node_modules"]
},
before_install: [
"curl -o- -L https://yarnpkg.com/install.sh | bash",
"export PATH=\"$HOME/.yarn/bin:$PATH\"",
"export DISPLAY=:99.0",
"sh -e /etc/init.d/xvfb start",
"sleep 3"
],
before_cache: [
"rm -rf node_modules/.cache"
],
before_script: [],
after_script: ["yarn run coveralls"]
}