Skip to content

Commit 0ca3adc

Browse files
cconard96cedric-anne
authored andcommitted
fix ansi escape sequences
1 parent 0cb7959 commit 0ca3adc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/continuous-integration.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -71,23 +71,23 @@ jobs:
7171
echo -e "\033[0;33mExecuting PHP Parallel Lint...\033[0m"
7272
vendor/bin/parallel-lint --colors --exclude ./lib/ --exclude ./node_modules/ --exclude ./vendor/ --no-progress .
7373
else
74-
echo -e "\033[PHP Parallel Lint execution skipped.\033[0m"
74+
echo -e "\033[0;33mPHP Parallel Lint execution skipped.\033[0m"
7575
fi
7676
- name: "PHP CodeSniffer"
7777
run: |
7878
if [[ -f "vendor/bin/phpcs" && -f ".phpcs.xml" ]]; then
7979
echo -e "\033[0;33mExecuting PHP CodeSniffer...\033[0m"
8080
vendor/bin/phpcs
8181
else
82-
echo -e "\033[PHP CodeSniffer execution skipped.\033[0m"
82+
echo -e "\033[0;33mPHP CodeSniffer execution skipped.\033[0m"
8383
fi
8484
- name: "PHPStan"
8585
run: |
8686
if [[ -f "vendor/bin/phpstan" && -f "phpstan.neon" ]]; then
8787
echo -e "\033[0;33mExecuting PHPStan...\033[0m"
8888
vendor/bin/phpstan analyze --ansi --memory-limit=2G --no-interaction --no-progress
8989
else
90-
echo -e "\033[PHPStan execution skipped.\033[0m"
90+
echo -e "\033[0;33mPHPStan execution skipped.\033[0m"
9191
fi
9292
- name: "JS Lint"
9393
run: |
@@ -125,5 +125,5 @@ jobs:
125125
echo -e "\033[0;33mExecuting PHPUnit...\033[0m"
126126
php vendor/bin/phpunit --colors=always
127127
else
128-
echo -e "\033[PHPUnit execution skipped.\033[0m"
128+
echo -e "\033[0;33mPHPUnit execution skipped.\033[0m"
129129
fi

0 commit comments

Comments
 (0)