28 lines
553 B
YAML
28 lines
553 B
YAML
language: node_js
|
|
sudo: false
|
|
dist: trusty
|
|
node_js:
|
|
- 10.9.0
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
chrome: stable
|
|
branches:
|
|
except:
|
|
- g3
|
|
cache:
|
|
yarn: true
|
|
directories:
|
|
- "./node_modules"
|
|
- "./.chrome/chromium"
|
|
- "./aio/node_modules"
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.13.0
|
|
- export PATH="$HOME/.yarn/bin:$PATH"
|
|
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
|
|
script:
|
|
- "./aio/deploy-cn.sh"
|