Skip to content

Commit 0cb7959

Browse files
committed
Exclude lib and node_modules dirs from PHP Parallel Lint checks
1 parent 510df67 commit 0cb7959

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: |
7070
if [[ -f "vendor/bin/parallel-lint" ]]; then
7171
echo -e "\033[0;33mExecuting PHP Parallel Lint...\033[0m"
72-
vendor/bin/parallel-lint --colors --exclude ./vendor/ --no-progress .
72+
vendor/bin/parallel-lint --colors --exclude ./lib/ --exclude ./node_modules/ --exclude ./vendor/ --no-progress .
7373
else
7474
echo -e "\033[PHP Parallel Lint execution skipped.\033[0m"
7575
fi

0 commit comments

Comments
 (0)