Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/php-quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,8 @@ jobs:
echo "🎨 Running PHP CodeSniffer (${INPUTS_CODING_STANDARD} standard)..."

# Check for custom check-style script first (unless use-custom-config is set)
if [ "${{ inputs.use-custom-config }}" == "false" ]
&& composer run-script --list | grep -q "check-style"; then
if [ "${{ inputs.use-custom-config }}" == "false" ] && \
composer run-script --list | grep -q "check-style"; then
echo "✅ Using composer check-style script"
composer run-script check-style
elif [ "${NEEDS_INSTALL_OUTPUTS_HAS_PHPCS_CONFIG}" = "true" ]; then
Expand Down