Skip to content

Commit

Permalink
Exclude lib and node_modules dirs from PHP Parallel Lint checks
Browse files Browse the repository at this point in the history
  • Loading branch information
cedric-anne committed Nov 14, 2023
1 parent 510df67 commit 0cb7959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0cb7959

Please sign in to comment.