integrate extended evaluation #286
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: Test | |
on: [push, pull_request] | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- php: '5.6' | |
wordpress: '4.7' | |
- php: '7.4' | |
wordpress: '5.9' | |
- php: '8.0' | |
wordpress: '6.0' | |
- php: '8.1' | |
wordpress: '6.1' | |
- php: '8.2' | |
wordpress: '6.2' | |
- php: '8.2' | |
wordpress: 'latest' | |
- php: '8.2' | |
wordpress: 'nightly' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{matrix.php}} | |
tools: composer | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Setup DB | |
uses: shogo82148/actions-setup-mysql@v1 | |
with: | |
mysql-version: 'mysql-5.7' | |
root-password: "root" | |
- name: Install | |
run: | | |
composer install --no-interaction | |
npm ci | |
- name: Setup WP | |
run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 "${{ matrix.wordpress }}" | |
- name: PHP unit tests | |
env: | |
COMPOSER: ${{ matrix.composer }} | |
run: composer test | |
- name: JS unit tests | |
run: npx nyc --reporter=text mocha tests/js/*.test.js | |
quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
tools: composer | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install | |
run: | | |
composer install --no-interaction | |
npm ci | |
- name: Code style checks for PHP, JS and CSS | |
run: composer lint-all |