2023-11-21 18:33:32 +01:00
|
|
|
# Triggers after the layered build has finished, taking the artifact and running Playwright on it
|
|
|
|
name: End to End Tests
|
|
|
|
on:
|
|
|
|
workflow_run:
|
|
|
|
workflows: ["Element Web - Build"]
|
|
|
|
types:
|
|
|
|
- completed
|
|
|
|
|
2023-11-29 12:42:00 +01:00
|
|
|
# support calls from other workflows for downstream testing
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
react-sdk-repository:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
description: "The name of the github repository to check out and build."
|
2024-01-19 10:30:15 +01:00
|
|
|
secrets:
|
|
|
|
ELEMENT_BOT_TOKEN:
|
|
|
|
required: true
|
2023-11-29 12:42:00 +01:00
|
|
|
|
2023-11-21 18:33:32 +01:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch || github.run_id }}
|
|
|
|
cancel-in-progress: ${{ github.event.workflow_run.event == 'pull_request' }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
prepare:
|
|
|
|
name: Prepare
|
|
|
|
if: github.event.workflow_run.conclusion == 'success'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
statuses: write
|
|
|
|
steps:
|
|
|
|
# We create the status here and then update it to success/failure in the `report` stage
|
|
|
|
# This provides an easy link to this workflow_run from the PR before the tests are done.
|
2023-12-04 16:42:54 +01:00
|
|
|
- uses: Sibz/github-status-action@071b5370da85afbb16637d6eed8524a06bc2053e # v1
|
2023-11-21 18:33:32 +01:00
|
|
|
with:
|
|
|
|
authToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
state: pending
|
|
|
|
context: ${{ github.workflow }} / end-to-end-tests
|
|
|
|
sha: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
|
|
|
|
|
|
|
tests:
|
2023-11-22 13:54:31 +01:00
|
|
|
name: "Run Tests ${{ matrix.runner }}/${{ strategy.job-total }}"
|
2023-11-21 18:33:32 +01:00
|
|
|
needs: prepare
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
issues: read
|
|
|
|
pull-requests: read
|
|
|
|
environment: EndToEndTests
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-12-06 16:13:03 +01:00
|
|
|
# Run multiple instances in parallel to speed up the tests
|
2023-12-12 17:51:54 +01:00
|
|
|
runner: [1, 2, 3, 4, 5, 6, 7, 8]
|
2023-11-21 18:33:32 +01:00
|
|
|
steps:
|
|
|
|
- name: 📥 Download artifact
|
2024-01-19 09:54:49 +01:00
|
|
|
uses: actions/download-artifact@v4
|
2023-11-21 18:33:32 +01:00
|
|
|
with:
|
2024-01-19 10:30:15 +01:00
|
|
|
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
2024-01-19 09:54:49 +01:00
|
|
|
run-id: ${{ github.event.workflow_run.id }}
|
2023-11-21 18:33:32 +01:00
|
|
|
name: previewbuild
|
|
|
|
path: webapp
|
|
|
|
|
|
|
|
# The workflow_run.head_sha is the sha of the head commit but the element-web was built using a simulated
|
|
|
|
# merge commit - https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
|
|
|
|
# so use the sha from the tarball for the checkout of the tests
|
|
|
|
# to make sure we get a matching set of code and tests.
|
|
|
|
- name: Grab sha from webapp
|
|
|
|
id: sha
|
|
|
|
run: |
|
|
|
|
echo "sha=$(cat webapp/sha)" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
# XXX: We're checking out untrusted code in a secure context
|
|
|
|
# We need to be careful to not trust anything this code outputs/may do
|
|
|
|
#
|
|
|
|
# Note that (in the absence of a `react-sdk-repository` input),
|
|
|
|
# we check out from the default repository, which is (for this workflow) the
|
|
|
|
# *target* repository for the pull request.
|
|
|
|
#
|
|
|
|
ref: ${{ steps.sha.outputs.sha }}
|
|
|
|
persist-credentials: false
|
|
|
|
path: matrix-react-sdk
|
|
|
|
repository: ${{ inputs.react-sdk-repository || github.repository }}
|
|
|
|
|
2023-11-29 10:07:26 +01:00
|
|
|
- uses: actions/setup-node@v4
|
2023-11-21 18:33:32 +01:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2023-11-21 22:47:11 +01:00
|
|
|
cache-dependency-path: matrix-react-sdk/yarn.lock
|
2023-11-21 18:33:32 +01:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2023-11-21 22:47:11 +01:00
|
|
|
working-directory: matrix-react-sdk
|
2023-11-21 18:33:32 +01:00
|
|
|
run: yarn install --frozen-lockfile
|
|
|
|
|
2023-12-06 11:13:48 +01:00
|
|
|
- name: Get installed Playwright version
|
2024-01-17 11:11:04 +01:00
|
|
|
id: playwright
|
|
|
|
working-directory: matrix-react-sdk
|
|
|
|
run: echo "version=$(yarn list --pattern @playwright/test --depth=0 --json --non-interactive --no-progress | jq -r '.data.trees[].name')" >> $GITHUB_OUTPUT
|
2023-12-06 11:13:48 +01:00
|
|
|
|
|
|
|
- name: Cache playwright binaries
|
2024-02-02 18:33:13 +01:00
|
|
|
uses: actions/cache@v4
|
2023-12-06 11:13:48 +01:00
|
|
|
id: playwright-cache
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cache/ms-playwright
|
2024-01-17 11:11:04 +01:00
|
|
|
key: ${{ runner.os }}-playwright-${{ steps.playwright.outputs.version }}
|
2023-12-06 11:13:48 +01:00
|
|
|
|
2023-11-21 18:33:32 +01:00
|
|
|
- name: Install Playwright browsers
|
2023-12-06 11:13:48 +01:00
|
|
|
if: steps.playwright-cache.outputs.cache-hit != 'true'
|
2023-11-21 22:47:11 +01:00
|
|
|
working-directory: matrix-react-sdk
|
2023-11-21 18:33:32 +01:00
|
|
|
run: yarn playwright install --with-deps
|
|
|
|
|
|
|
|
- name: Run Playwright tests
|
2024-02-16 15:13:52 +01:00
|
|
|
uses: coactions/setup-xvfb@6b00cf1889f4e1d5a48635647013c0508128ee1a
|
2023-11-21 23:08:06 +01:00
|
|
|
with:
|
2023-11-22 13:54:31 +01:00
|
|
|
run: yarn playwright test --shard ${{ matrix.runner }}/${{ strategy.job-total }}
|
2023-11-21 23:08:06 +01:00
|
|
|
working-directory: matrix-react-sdk
|
2023-11-21 18:33:32 +01:00
|
|
|
|
|
|
|
- name: Upload blob report to GitHub Actions Artifacts
|
|
|
|
if: always()
|
2024-01-19 09:54:49 +01:00
|
|
|
uses: actions/upload-artifact@v4
|
2023-11-21 18:33:32 +01:00
|
|
|
with:
|
2024-01-19 09:54:49 +01:00
|
|
|
name: all-blob-reports-${{ matrix.runner }}
|
2023-11-21 22:47:11 +01:00
|
|
|
path: matrix-react-sdk/blob-report
|
2023-11-21 18:33:32 +01:00
|
|
|
retention-days: 1
|
|
|
|
|
|
|
|
report:
|
|
|
|
name: Report results
|
|
|
|
needs: tests
|
|
|
|
runs-on: ubuntu-latest
|
2023-11-28 10:18:28 +01:00
|
|
|
environment: Netlify
|
2023-11-21 18:33:32 +01:00
|
|
|
if: always()
|
|
|
|
permissions:
|
|
|
|
statuses: write
|
2023-11-28 11:29:29 +01:00
|
|
|
deployments: write
|
2023-11-21 18:33:32 +01:00
|
|
|
steps:
|
2023-11-28 20:22:17 +01:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-07 14:45:44 +01:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
repository: ${{ inputs.react-sdk-repository || github.repository }}
|
2023-11-21 18:33:32 +01:00
|
|
|
|
2023-11-29 10:07:26 +01:00
|
|
|
- uses: actions/setup-node@v4
|
2023-11-21 18:33:32 +01:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Download blob reports from GitHub Actions Artifacts
|
2024-01-19 09:54:49 +01:00
|
|
|
uses: actions/download-artifact@v4
|
2023-11-21 18:33:32 +01:00
|
|
|
with:
|
2024-01-19 09:54:49 +01:00
|
|
|
pattern: all-blob-reports-*
|
2023-11-21 18:33:32 +01:00
|
|
|
path: all-blob-reports
|
2024-01-19 09:54:49 +01:00
|
|
|
merge-multiple: true
|
2023-11-21 18:33:32 +01:00
|
|
|
|
|
|
|
- name: Merge into HTML Report
|
2024-02-28 14:02:09 +01:00
|
|
|
run: yarn playwright merge-reports --reporter=html,github,./playwright/flaky-reporter.ts ./all-blob-reports
|
|
|
|
env:
|
|
|
|
# Only pass creds to the flaky-reporter on main branch runs
|
|
|
|
GITHUB_TOKEN: ${{ github.event.workflow_run.head_branch == 'develop' && secrets.ELEMENT_BOT_TOKEN || '' }}
|
2023-11-21 18:33:32 +01:00
|
|
|
|
|
|
|
- name: Upload HTML report
|
2024-01-19 09:54:49 +01:00
|
|
|
uses: actions/upload-artifact@v4
|
2023-11-21 18:33:32 +01:00
|
|
|
with:
|
|
|
|
name: html-report--attempt-${{ github.run_attempt }}
|
|
|
|
path: playwright-report
|
|
|
|
retention-days: 14
|
|
|
|
|
2023-12-04 16:42:54 +01:00
|
|
|
- uses: Sibz/github-status-action@071b5370da85afbb16637d6eed8524a06bc2053e # v1
|
2023-11-22 09:38:26 +01:00
|
|
|
if: always()
|
2023-11-21 18:33:32 +01:00
|
|
|
with:
|
|
|
|
authToken: ${{ secrets.GITHUB_TOKEN }}
|
2023-11-22 09:46:33 +01:00
|
|
|
state: ${{ needs.tests.result == 'success' && 'success' || 'failure' }}
|
2023-11-21 18:33:32 +01:00
|
|
|
context: ${{ github.workflow }} / end-to-end-tests
|
|
|
|
sha: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
2023-11-28 10:18:28 +01:00
|
|
|
|
|
|
|
- name: 📤 Deploy to Netlify
|
2023-11-28 11:42:23 +01:00
|
|
|
uses: matrix-org/netlify-pr-preview@v3
|
2023-11-28 10:18:28 +01:00
|
|
|
with:
|
|
|
|
path: playwright-report
|
|
|
|
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
|
|
|
|
branch: ${{ github.event.workflow_run.head_branch }}
|
|
|
|
revision: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
token: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
|
|
site_id: ${{ secrets.NETLIFY_SITE_ID }}
|
|
|
|
desc: Playwright Report
|
|
|
|
deployment_env: EndToEndTests
|
2023-11-28 11:55:54 +01:00
|
|
|
prefix: "e2e-"
|