chore(release): publish #19635
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: End-to-End Tests Playwright | |
on: | |
pull_request: | |
push: | |
branches: | |
- trunk | |
- 'release/**' | |
- 'wp/**' | |
# Cancels all previous workflow runs for pull requests that have not completed. | |
concurrency: | |
# The concurrency group contains the workflow name and the branch name for pull requests | |
# or the commit hash for any other events. | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
e2e: | |
name: E2E Tests | |
runs-on: ubuntu-latest | |
if: ${{ github.repository == 'WordPress/gutenberg' || github.event_name == 'pull_request' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node: ['14'] | |
steps: | |
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 | |
- name: Use desired version of NodeJS | |
uses: actions/setup-node@38d90ce44d5275ad62cc48384b3d8a58c500bb5f # v2.2.2 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: npm | |
- name: Npm install and build | |
run: | | |
npm ci | |
npm run build | |
- name: Install Playwright dependencies | |
run: | | |
npx playwright install chromium --with-deps | |
- name: Install WordPress and start the server | |
run: | | |
npm run wp-env start | |
- name: Run the tests | |
run: | | |
npm run test-e2e:playwright | |
- name: Archive debug artifacts (screenshots, traces) | |
uses: actions/upload-artifact@e448a9b857ee2131e752b06002bf0e093c65e571 # v2.2.2 | |
if: always() | |
with: | |
name: failures-artifacts | |
path: artifacts | |
if-no-files-found: ignore | |
- name: Archive flaky tests report | |
uses: actions/upload-artifact@e448a9b857ee2131e752b06002bf0e093c65e571 # v2.2.2 | |
if: always() | |
with: | |
name: flaky-tests-report | |
path: flaky-tests | |
if-no-files-found: ignore |