Fix #1235: stop overriding core's resize opt-out on client side uploads #1073
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: PHPCS | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| # Cancel all previous workflow runs for the same branch that have not yet completed. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| uses: wp-media/workflows/.github/workflows/phpcs.yml@main | |
| with: | |
| # PHPCS tokenises source only; the standards installer is a Composer plugin | |
| # (unaffected by --no-scripts), so Strauss is not needed here. | |
| composer-options: --no-scripts |