Skip to content

Bump postcss from 8.4.19 to 8.4.31 in /blocks/comments #189

Bump postcss from 8.4.19 to 8.4.31 in /blocks/comments

Bump postcss from 8.4.19 to 8.4.31 in /blocks/comments #189

Workflow file for this run

name: WP-Discourse Tests
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: Tests on PHP ${{ matrix.php }}
strategy:
matrix:
php: ['7.4']
wordpress: ['5.1.2', 'latest']
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install Composer
uses: ramsey/composer-install@v2
with:
dependency-versions: 'highest'
composer-options: '--ignore-platform-reqs'
- name: PHPUnit
run: |
sudo /etc/init.d/mysql start
bash bin/install-wp-tests.sh wordpress_test root 'root' localhost ${{ matrix.wordpress }}
vendor/bin/phpunit
- name: PHPUnit Multisite
run: |
vendor/bin/phpunit -c tests/phpunit/multisite.xml