From 0cb79593ac2876261373f17a9b701e15e43a3d4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Anne?= Date: Tue, 14 Nov 2023 23:16:19 +0100 Subject: [PATCH] Exclude `lib` and `node_modules` dirs from PHP Parallel Lint checks --- .github/workflows/continuous-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 4630793..0d23dc1 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -69,7 +69,7 @@ jobs: run: | if [[ -f "vendor/bin/parallel-lint" ]]; then echo -e "\033[0;33mExecuting PHP Parallel Lint...\033[0m" - vendor/bin/parallel-lint --colors --exclude ./vendor/ --no-progress . + vendor/bin/parallel-lint --colors --exclude ./lib/ --exclude ./node_modules/ --exclude ./vendor/ --no-progress . else echo -e "\033[PHP Parallel Lint execution skipped.\033[0m" fi