24 строки
394 B
YAML
24 строки
394 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- "node"
|
|
|
|
# https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirementsdf
|
|
env:
|
|
- CXX=g++-4.8
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
|
|
before_script:
|
|
- npm install -g gulp
|
|
- npm install -g typings
|
|
- typings install
|
|
|
|
script:
|
|
- gulp build-test
|