Remove plugin-tests
folder
#2718
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: Unit Testing | |
on: | |
push: | |
branches: | |
- trunk | |
- 'release/**' | |
# Only run if PHP-related files changed. | |
paths: | |
- '.github/workflows/php-test.yml' | |
- '**.php' | |
- '.wp-env.json' | |
- '**/package.json' | |
- 'package-lock.json' | |
- 'phpunit.xml.dist' | |
- 'tests/multisite.xml' | |
- 'composer.json' | |
- 'composer.lock' | |
pull_request: | |
# Only run if PHP-related files changed. | |
paths: | |
- '.github/workflows/php-test.yml' | |
- '**.php' | |
- '.wp-env.json' | |
- '**/package.json' | |
- 'package-lock.json' | |
- 'phpunit.xml.dist' | |
- 'tests/multisite.xml' | |
- 'composer.json' | |
- 'composer.lock' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
workflow_dispatch: | |
jobs: | |
php-test: | |
name: "PHP ${{ matrix.php }} / WP ${{ matrix.wp }}" | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1', '7.0'] | |
wp: [ 'latest' ] | |
include: | |
- php: '7.4' | |
wp: '6.4' | |
- php: '8.3' | |
wp: 'trunk' | |
env: | |
WP_ENV_PHP_VERSION: ${{ matrix.php }} | |
WP_ENV_CORE: ${{ matrix.wp == 'trunk' && 'WordPress/WordPress' || format( 'https://wordpress.org/wordpress-{0}.zip', matrix.wp ) }} | |
steps: | |
- uses: styfle/[email protected] | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js (.nvmrc) | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: npm | |
- name: npm install | |
run: npm ci | |
- name: Remove standalone plugins from wp-env config | |
run: jq '.plugins = [.plugins[0]]' .wp-env.json > .wp-env.override.json | |
- name: Install WordPress | |
run: npm run wp-env start | |
# Note that `composer update` is required instead of `composer install` | |
# for the sake of PHP versions older than 8.1, which is the version of | |
# PHP that the composer.lock was created for. | |
- name: Composer update | |
run: npm run wp-env run tests-cli -- --env-cwd="wp-content/plugins/$(basename $(pwd))" composer update --no-interaction | |
- name: Running single site unit tests | |
run: npm run test-php | |
- name: Running multisite unit tests | |
run: npm run test-php-multisite |