You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
372 B
22 lines
372 B
sudo: false
|
|
language: node_js
|
|
node_js:
|
|
- "node"
|
|
os:
|
|
- osx
|
|
- linux
|
|
|
|
before_install:
|
|
- if [ $TRAVIS_OS_NAME == "linux" ]; then
|
|
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
|
|
sh -e /etc/init.d/xvfb start;
|
|
sleep 3;
|
|
fi
|
|
|
|
install:
|
|
- npm install
|
|
- npm run vscode:prepublish
|
|
|
|
script:
|
|
- npm run tslint
|
|
- npm test --silent
|