fix: adds search params to multisite rewrite in appMiddleware #1203
Workflow file for this run
This file contains 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 check | |
on: pull_request | |
jobs: | |
phpcs: | |
name: phpcs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set PHP version | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: composer install | |
run: cd ./wp/headless-wp && composer install --ignore-platform-reqs | |
- name: Check PHPCS standard | |
run: ./wp/headless-wp/vendor/bin/phpcs -i | |
- name: lint | |
run: cd ./wp/headless-wp && composer run lint |