From 406d2019c1fa1edea5654e855325e743c2f61885 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Mon, 28 Dec 2020 14:41:23 -0700 Subject: [PATCH] Don't override PATH in CI --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4a6193b..c02f8cd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ dist: bionic language: php env: - - PATH="app/vendor/bin:${PATH}" PHP_CS_FIXER_IGNORE_ENV="true" + - PHP_CS_FIXER_IGNORE_ENV="true" php: - 7.2 @@ -37,9 +37,9 @@ install: script: - npm run production --verbose - - php-cs-fixer fix --diff --dry-run - - psalm --show-info=true - - phpunit --coverage-text + - app/vendor/bin/php-cs-fixer fix --diff --dry-run + - app/vendor/bin/psalm --show-info=true + - app/vendor/bin/phpunit --coverage-text before_deploy: make artifacts