chore(deps-dev): bump @wordpress/scripts from 27.9.0 to 31.2.0 #418
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: Test PHP | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, ready_for_review] | |
| jobs: | |
| phplint: | |
| name: PHPLint | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name | |
| steps: | |
| - name: Setup PHP version | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "7.4" | |
| extensions: simplexml | |
| - name: Checkout source code | |
| uses: actions/checkout@v4 | |
| - name: Get Composer Cache Directory | |
| id: composer-cache | |
| run: | | |
| echo "::set-output name=dir::$(composer config cache-files-dir)" | |
| - name: Install composer | |
| run: composer install --prefer-dist --no-progress --no-suggest | |
| - name: Run PHPCS | |
| run: composer run lint | |
| phpstan: | |
| name: PHPStan | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name | |
| steps: | |
| - name: Setup PHP version | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "7.4" | |
| extensions: simplexml, mysql | |
| - name: Checkout source code | |
| uses: actions/checkout@v4 | |
| - name: Install composer | |
| run: composer install --prefer-dist --no-progress --no-suggest | |
| - name: PHPStan Static Analysis | |
| run: composer phpstan | |
| phpunit: | |
| name: PHPUnit | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name | |
| services: | |
| mysql: | |
| image: mysql:5.7 | |
| env: | |
| MYSQL_ROOT_PASSWORD: root | |
| ports: | |
| - 3306/tcp | |
| options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
| steps: | |
| - name: Setup PHP version | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "7.4" | |
| extensions: simplexml, mysql | |
| tools: phpunit-polyfills | |
| - name: Checkout source code | |
| uses: actions/checkout@v2 | |
| - name: Install Subversion | |
| run: sudo apt-get update && sudo apt-get install -y subversion | |
| - name: Install composer | |
| run: composer install --prefer-dist --no-progress --no-suggest | |
| - name: Install npm | |
| run: npm ci | |
| - name: Run build | |
| run: npm run build | |
| - name: Install WordPress Test Suite | |
| run: | | |
| bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1:${{ job.services.mysql.ports['3306'] }} | |
| - name: PHPUnit tests | |
| run: composer run-script phpunit |