woocommerce/.github/workflows/pr-unit-tests.yml

67 lines
2.0 KiB
YAML
Raw Normal View History

2021-01-21 12:03:07 +00:00
name: Run unit tests on PR
on:
pull_request:
paths-ignore:
- '**/changelog/**'
2021-10-13 03:51:07 +00:00
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2022-04-21 16:45:12 +00:00
permissions: {}
2021-01-21 12:03:07 +00:00
jobs:
test:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.user.login != 'github-actions[bot]' }}
name: PHP ${{ matrix.php }} WP ${{ matrix.wp }} ${{ matrix.hpos && 'HPOS' || '' }}
timeout-minutes: 30
runs-on: ubuntu-20.04
permissions:
contents: read
continue-on-error: ${{ matrix.wp == 'nightly' }}
env:
HPOS: ${{ matrix.hpos }}
strategy:
fail-fast: false
matrix:
php: ['7.4', '8.0']
wp: ['latest']
include:
- wp: nightly
php: '7.4'
- wp: '6.1'
php: 7.4
- wp: 'latest'
php: '7.4'
hpos: true
services:
database:
image: mysql:5.6
env:
MYSQL_ROOT_PASSWORD: root
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=5
steps:
- uses: actions/checkout@v3
- name: Setup WooCommerce Monorepo
uses: ./.github/actions/setup-woocommerce-monorepo
with:
php-version: ${{ matrix.php }}
2021-01-21 12:03:07 +00:00
- name: Tool versions
run: |
php --version
composer --version
2021-01-21 12:03:07 +00:00
- name: Init DB and WP
working-directory: plugins/woocommerce
run: ./tests/bin/install.sh woo_test root root 127.0.0.1 ${{ matrix.wp }}
2021-01-21 12:03:07 +00:00
- name: Run tests
working-directory: plugins/woocommerce
run: pnpm run test --filter=woocommerce --color