vscode-php-intellisense/.travis.yml

22 lines
344 B
YAML
Raw Normal View History

2016-09-04 11:58:06 +00:00
language: php
2016-08-25 15:55:00 +00:00
2016-09-04 11:58:06 +00:00
php:
- '7.0'
2016-08-25 15:55:00 +00:00
2016-09-04 11:58:06 +00:00
before_install:
- nvm install 5.10.0
- nvm use 5.10.0
2016-08-25 15:55:00 +00:00
install:
- npm install
2016-09-09 18:26:07 +00:00
- typings install
2016-09-04 11:58:06 +00:00
- composer install
2016-08-25 15:55:00 +00:00
script:
- npm run lint
2016-09-04 11:56:59 +00:00
- npm run compile
2016-09-04 11:58:06 +00:00
after_success:
# If the build was triggered by a tag, publish the new version
- 'if [[ $TRAVIS_TAG == v* ]]; then vsce publish -p $VSCE_TOKEN; fi'