diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 32403be4..e9ee6098 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ language: php sudo: false php: + - 7.1 - 7.0 - 5.6 - 5.5 @@ -20,10 +21,12 @@ matrix: fast_finish: true before_script: - - phpenv config-rm xdebug.ini + - if [[ $TRAVIS_PHP_VERSION != 7.x ]]; then phpenv config-rm xdebug.ini; fi - phpenv config-add tests/php.ini - composer install + - npm install script: + - ./node_modules/.bin/jshint assets/js/{core,components} - phpunit -c tests/units.$DB.xml - phpunit tests/configtest |