Bump @wp-playground/cli from 1.0.4 to 1.0.7 in /env (#204) #334
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: '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' |