22 lines
344 B
YAML
22 lines
344 B
YAML
language: php
|
|
|
|
php:
|
|
- '7.0'
|
|
|
|
before_install:
|
|
- nvm install 5.10.0
|
|
- nvm use 5.10.0
|
|
|
|
install:
|
|
- npm install
|
|
- typings install
|
|
- composer install
|
|
|
|
script:
|
|
- npm run lint
|
|
- npm run compile
|
|
|
|
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'
|