diff options
author | Frédéric Guillot <fred@kanboard.net> | 2019-07-29 16:17:44 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2019-07-29 16:17:44 -0700 |
commit | a40f3e7a3072ae5509f464e8997b62e27c3e404e (patch) | |
tree | 3250e2423321f448977510e613ddd0d395e7c409 | |
parent | 6491cb513ee840166612a951d1f492fd770df87d (diff) |
Fix travis config after refactoring
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index ef5162cc..dfc23581 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,11 +20,11 @@ env: matrix: fast_finish: true -before_script: +before_install: - composer install - - npm install + - npm install -g jshint script: - - ./node_modules/.bin/jshint assets/js/{core,components} + - jshint assets/js/{core,components} - ./vendor/bin/phpunit -c tests/units.$DB.xml - ./vendor/bin/phpunit tests/configtest |