Skip to content

Bump @wp-playground/cli from 1.0.4 to 1.0.7 in /env (#204) #334

Bump @wp-playground/cli from 1.0.4 to 1.0.7 in /env (#204)

Bump @wp-playground/cli from 1.0.4 to 1.0.7 in /env (#204) #334

Workflow file for this run

name: 'Matrix Tests'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
matrix:
name: 'Run tests'
timeout-minutes: 60
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
shard: [1/4, 2/4, 3/4, 4/4]
steps:
- uses: actions/checkout@v4
- name: Run performance tests
uses: ./
id: run-tests
with:
urls: |
/
/sample-page/
plugins: |
./tests/dummy-plugin
shard: ${{ matrix.shard }}
merge-reports:
name: 'Merge reports'
# Merge reports after playwright-tests, even if some shards have failed
if: always()
needs: [matrix]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Merge performance test results
uses: ./
with:
action: 'merge'