Update custom URL components and inputs and fix tests #679
This file contains hidden or 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 / E2E Runner | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| chrome_e2e_gamut_tests: | |
| name: > | |
| E2E - ${{ | |
| format( | |
| 'WP{0} + PHP{1} + {2} theme', | |
| matrix.wp, | |
| matrix.php, | |
| matrix.theme == '' && 'TwentyTwentyThree' || 'Go' | |
| ) | |
| }} | |
| uses: ./.github/workflows/test-e2e-cypress.yml | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| wp: # Test against Prev-Prev Major, Prev-Major, and current Major release versions. | |
| - "6.6" | |
| - "6.7" | |
| - "6.8" | |
| theme: | |
| - "https://downloads.wordpress.org/theme/go.zip" | |
| - "" # Default theme is TwentyTwentyThree | |
| php: # Test against minimum and latest PHP versions. | |
| - "7.4" | |
| - "8.4" | |
| with: | |
| wpVersion: "WordPress/WordPress#${{matrix.wp}}" | |
| theme: ${{matrix.theme}} | |
| phpVersion: ${{matrix.php}} |