chore: performance improvements for render_block and WPGraphQL 2.3.0 #499
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: WordPress Coding Standards | |
| on: | |
| pull_request: | |
| jobs: | |
| wpcs: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| - name: Install Dependencies | |
| run: composer install | |
| - name: Run Lint | |
| run: composer lint | |
| - name: Run PHPCS | |
| run: composer phpcs |