1
0
mirror of https://github.com/adobe/brackets.git synced 2024-11-20 18:02:54 +01:00
brackets/.travis.yml
Nitesh Kumar 9516c8de26 Php Tooling Extensions Using LSP Framework (#14671)
* Php Tooling Extensions Using LSP Framework

* Corrected Indentation space

* Corrected ESLint Error

* addressed review comments

* Addressed review comments

* addressed review comments

* Added Preferences description string

* Addressed review comments

* Addressed review comments

* addressed review comments

* Addresed review comments

* Addresed review comments

* Addressed some bug

* Adding Unit test Files

* Corrected the strings

* Fixed Eslint Errors

* Added some unit test Cases

* using restart function

* Switch to php7 in travis before dependency installation

php-Tooling npm package requires felixfbecker/language-server php
package, which can only be installed on php7. this should fix the break
in brackets travis build
2019-04-03 14:12:03 +05:30

21 lines
598 B
YAML

language: node_js
sudo: false # use container-based Travis infrastructure
node_js:
- "6"
before_install:
- phpenv global 7.0 #switch to php7, since that's what php-Tooling extension requires
before_script:
- npm install -g grunt-cli
- npm install -g jasmine-node
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/9c767842144fd24d26a5
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
branches:
only:
- master
- release