vscode-languageserver-node/.travis.yml

30 строки
381 B
YAML
Исходник Обычный вид История

2015-11-24 17:46:30 +03:00
language: node_js
sudo: false
2017-09-05 16:12:34 +03:00
os:
- linux
2019-08-06 19:49:38 +03:00
dist:
- xenial
2015-11-24 17:46:30 +03:00
node_js:
2019-11-14 23:25:15 +03:00
- "12.4.0"
2017-09-05 16:12:34 +03:00
2019-08-07 13:22:45 +03:00
services:
- xvfb
2017-09-05 16:12:34 +03:00
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export DISPLAY=':99.0'
2019-08-07 13:22:45 +03:00
service xvfb start;
sleep 3;
2017-09-05 16:12:34 +03:00
fi
2017-09-06 00:03:54 +03:00
2015-11-24 17:46:30 +03:00
install:
- npm install
- npm run symlink
2015-11-24 17:46:30 +03:00
script:
2017-09-06 00:03:54 +03:00
- npm run compile
2019-08-29 19:40:26 +03:00
- npm run lint
2017-09-06 00:03:54 +03:00
- npm run test