fix(common/encoding): ems_anti_spam wrong encoding on tel: href #2945
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'CI' | |
| on: | |
| pull_request: | |
| push: | |
| env: | |
| PHP_VERSION: 8.4 | |
| jobs: | |
| code-quality: | |
| name: "Code Quality" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout code" | |
| uses: actions/checkout@v4 | |
| - name: "Install PHP" | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ env.PHP_VERSION }} | |
| coverage: none | |
| - name: "Get Composer Info" | |
| id: composer | |
| run: | | |
| echo "composer-lock-hash=${{ hashFiles('**/composer.lock') }}" >> $GITHUB_OUTPUT | |
| - name: "Restore cache results" | |
| uses: actions/cache/restore@v4 | |
| with: | |
| path: .cache | |
| key: ci-${{ github.ref_name }} | |
| - name: "Restore Composer Cache" | |
| uses: actions/cache/restore@v4 | |
| id: restore-composer | |
| with: | |
| path: vendor | |
| key: ${{ runner.os }}-composer-${{ steps.composer.outputs.composer-lock-hash }} | |
| - name: "Install Composer dependencies" | |
| if: steps.restore-composer.outputs.cache-hit != 'true' | |
| run: composer install --no-progress | |
| - name: "Run PHPStan" | |
| run: vendor/bin/phpstan analyse --configuration=./config/phpstan.neon.dist --error-format=github -vvv | |
| - name: "Run PHP-CS-Fixer" | |
| run: >- | |
| PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --diff --dry-run | |
| --config=./config/php-cs-fixer.php | |
| - name: "Run PHPUnit" | |
| run: vendor/bin/phpunit -c config/phpunit.xml.dist --stop-on-defect | |
| - name: "Save cache results" | |
| uses: actions/cache/save@v4 | |
| if: always() | |
| with: | |
| path: .cache | |
| key: ci-${{ github.ref_name }} | |
| - name: "Save vendor directory" | |
| if: steps.restore-composer.outputs.cache-hit != 'true' | |
| uses: actions/cache/save@v4 | |
| with: | |
| path: vendor | |
| key: ${{ runner.os }}-composer-${{ steps.composer.outputs.composer-lock-hash }} |