[3.x] Restrict tag usage and ensure proper escaping of element name, caption, and description fields #1289
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: "Code Quality" | |
| on: | |
| pull_request: | |
| paths: | |
| - "**.php" | |
| - "phpcs.xml" | |
| - ".github/workflows/phpcs.yml" | |
| jobs: | |
| phpcs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Cache composer dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: ${{ runner.os }}-composer- | |
| - name: Install dependencies | |
| run: composer install --no-progress --prefer-dist --optimize-autoloader | |
| - uses: thenabeel/action-phpcs@v8 | |
| with: | |
| files: "**.php" | |
| phpcs_path: core/vendor/bin/phpcs | |
| standard: phpcs.xml | |
| fail_on_warnings: false |