From 9d3405423195571cb9d56a3eb0961087e758cbd3 Mon Sep 17 00:00:00 2001 From: Milos Stojanovic Date: Tue, 25 Jun 2019 19:12:56 +0200 Subject: [PATCH] vue linter --- .travis.yml | 47 +++++++++++++++++------------------------------ 1 file changed, 17 insertions(+), 30 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0b641f9..43c20ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,35 +1,22 @@ -matrix: - include: - - language: php +language: php - php: - - 7.1.3 - - 7.2 - - 7.3 +php: + - 7.1.3 + - 7.2 + - 7.3 - before_script: - - cp configuration_sample.php configuration.php - - composer self-update - - composer install --no-interaction +before_script: + - cp configuration_sample.php configuration.php + - composer self-update + - composer install --no-interaction - script: - - vendor/bin/phpunit --coverage-clover=coverage.xml +script: + - vendor/bin/phpunit --coverage-clover=coverage.xml - after_success: - - bash <(curl -s https://codecov.io/bash) +after_success: + - bash <(curl -s https://codecov.io/bash) - # Installs Sensiolabs security checker to check against unsecure libraries - - php -r "readfile('http://get.sensiolabs.org/security-checker.phar');" > security-checker - - chmod +x security-checker - - ./security-checker security:check - - - language: node_js - - node_js: - - "7" - - before_script: - - npm install - - script: - - npm run lint + # Installs Sensiolabs security checker to check against unsecure libraries + - php -r "readfile('http://get.sensiolabs.org/security-checker.phar');" > security-checker + - chmod +x security-checker + - ./security-checker security:check