2024-04-26 17:25:07 +02:00
|
|
|
# Produce a build of element-web with this version of react-sdk
|
|
|
|
# and any matching branches of element-web and js-sdk, output it
|
|
|
|
# as an artifact and run end-to-end tests.
|
2023-11-21 18:33:32 +01:00
|
|
|
name: End to End Tests
|
|
|
|
on:
|
2024-04-26 17:25:07 +02:00
|
|
|
pull_request: {}
|
|
|
|
merge_group:
|
|
|
|
types: [checks_requested]
|
|
|
|
push:
|
|
|
|
branches: [develop, master]
|
|
|
|
repository_dispatch:
|
|
|
|
types: [upstream-sdk-notify]
|
|
|
|
|
|
|
|
# support triggering from other workflows
|
2023-11-29 12:42:00 +01:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
2024-04-30 11:28:29 +02:00
|
|
|
skip:
|
|
|
|
type: boolean
|
|
|
|
required: false
|
|
|
|
default: false
|
|
|
|
description: "A boolean to skip the playwright check itself while still creating the passing check. Useful when only running in Merge Queues."
|
2024-04-30 11:35:12 +02:00
|
|
|
|
2023-11-29 12:42:00 +01:00
|
|
|
react-sdk-repository:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
description: "The name of the github repository to check out and build."
|
2024-04-26 17:25:07 +02:00
|
|
|
|
|
|
|
matrix-js-sdk-sha:
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
description: "The Git SHA of matrix-js-sdk to build against. By default, will use a matching branch name if it exists, or develop."
|
|
|
|
element-web-sha:
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
description: "The Git SHA of element-web to build against. By default, will use a matching branch name if it exists, or develop."
|
2023-11-29 12:42:00 +01:00
|
|
|
|
2023-11-21 18:33:32 +01:00
|
|
|
concurrency:
|
2024-04-26 17:25:07 +02:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
env:
|
|
|
|
# fetchdep.sh needs to know our PR number
|
|
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
2023-11-21 18:33:32 +01:00
|
|
|
|
|
|
|
jobs:
|
2024-04-26 17:25:07 +02:00
|
|
|
build:
|
|
|
|
name: "Build Element-Web"
|
2023-11-21 18:33:32 +01:00
|
|
|
runs-on: ubuntu-latest
|
2024-06-03 22:56:33 +02:00
|
|
|
if: inputs.skip != true
|
2023-11-21 18:33:32 +01:00
|
|
|
steps:
|
2024-04-26 17:25:07 +02:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
repository: ${{ inputs.react-sdk-repository || github.repository }}
|
|
|
|
|
|
|
|
- uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
cache: "yarn"
|
|
|
|
|
|
|
|
- name: Fetch layered build
|
|
|
|
id: layered_build
|
|
|
|
env:
|
|
|
|
# tell layered.sh to check out the right sha of the JS-SDK & EW, if they were given one
|
|
|
|
JS_SDK_GITHUB_BASE_REF: ${{ inputs.matrix-js-sdk-sha }}
|
|
|
|
ELEMENT_WEB_GITHUB_BASE_REF: ${{ inputs.element-web-sha }}
|
|
|
|
run: |
|
|
|
|
scripts/ci/layered.sh
|
|
|
|
JSSDK_SHA=$(git -C matrix-js-sdk rev-parse --short=12 HEAD)
|
|
|
|
REACT_SHA=$(git rev-parse --short=12 HEAD)
|
|
|
|
VECTOR_SHA=$(git -C element-web rev-parse --short=12 HEAD)
|
|
|
|
echo "VERSION=$VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- name: Copy config
|
|
|
|
run: cp element.io/develop/config.json config.json
|
|
|
|
working-directory: ./element-web
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
env:
|
|
|
|
CI_PACKAGE: true
|
|
|
|
VERSION: "${{ steps.layered_build.outputs.VERSION }}"
|
|
|
|
run: |
|
|
|
|
yarn build
|
|
|
|
echo $VERSION > webapp/version
|
|
|
|
working-directory: ./element-web
|
|
|
|
|
|
|
|
- name: Upload Artifact
|
|
|
|
uses: actions/upload-artifact@v4
|
2023-11-21 18:33:32 +01:00
|
|
|
with:
|
2024-04-26 17:25:07 +02:00
|
|
|
name: webapp
|
|
|
|
path: element-web/webapp
|
|
|
|
retention-days: 1
|
2023-11-21 18:33:32 +01:00
|
|
|
|
2024-04-26 17:25:07 +02:00
|
|
|
playwright:
|
2023-11-22 13:54:31 +01:00
|
|
|
name: "Run Tests ${{ matrix.runner }}/${{ strategy.job-total }}"
|
2024-04-26 17:25:07 +02:00
|
|
|
needs: build
|
2024-04-30 11:28:29 +02:00
|
|
|
if: inputs.skip != true
|
2023-11-21 18:33:32 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
issues: read
|
|
|
|
pull-requests: read
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-12-06 16:13:03 +01:00
|
|
|
# Run multiple instances in parallel to speed up the tests
|
2024-06-25 16:21:47 +02:00
|
|
|
runner: [1, 2, 3, 4, 5, 6]
|
2023-11-21 18:33:32 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
path: matrix-react-sdk
|
|
|
|
repository: ${{ inputs.react-sdk-repository || github.repository }}
|
|
|
|
|
2024-04-26 17:25:07 +02:00
|
|
|
- name: 📥 Download artifact
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
name: webapp
|
|
|
|
path: webapp
|
|
|
|
|
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-07-03 19:01:51 +02:00
|
|
|
run: yarn playwright test --shard ${{ matrix.runner }}/${{ strategy.job-total }}
|
|
|
|
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
|
|
|
|
|
2024-04-26 17:25:07 +02:00
|
|
|
complete:
|
|
|
|
name: end-to-end-tests
|
|
|
|
needs: playwright
|
2024-04-30 12:03:44 +02:00
|
|
|
if: always()
|
2023-11-21 18:33:32 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-06-03 12:03:26 +02:00
|
|
|
- uses: actions/checkout@v4
|
2024-06-03 22:56:33 +02:00
|
|
|
if: inputs.skip != true
|
2024-06-03 12:03:26 +02:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
2024-06-04 18:06:03 +02:00
|
|
|
repository: ${{ inputs.react-sdk-repository || github.repository }}
|
2024-06-03 12:03:26 +02:00
|
|
|
|
|
|
|
- uses: actions/setup-node@v4
|
2024-06-03 22:56:33 +02:00
|
|
|
if: inputs.skip != true
|
2024-06-03 12:03:26 +02:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2024-06-03 22:56:33 +02:00
|
|
|
if: inputs.skip != true
|
2024-06-03 12:03:26 +02:00
|
|
|
run: yarn install --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Download blob reports from GitHub Actions Artifacts
|
2024-06-03 22:56:33 +02:00
|
|
|
if: inputs.skip != true
|
2024-06-03 12:03:26 +02:00
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
pattern: all-blob-reports-*
|
|
|
|
path: all-blob-reports
|
|
|
|
merge-multiple: true
|
|
|
|
|
|
|
|
- name: Merge into HTML Report
|
2024-06-03 22:56:33 +02:00
|
|
|
if: inputs.skip != true
|
2024-06-03 12:03:26 +02:00
|
|
|
run: yarn playwright merge-reports --reporter=html,./playwright/flaky-reporter.ts ./all-blob-reports
|
|
|
|
env:
|
|
|
|
# Only pass creds to the flaky-reporter on main branch runs
|
2024-06-13 11:43:21 +02:00
|
|
|
GITHUB_TOKEN: ${{ github.ref_name == 'develop' && secrets.ELEMENT_BOT_TOKEN || '' }}
|
2024-06-03 12:03:26 +02:00
|
|
|
|
|
|
|
- name: Upload HTML report
|
2024-06-03 22:56:33 +02:00
|
|
|
if: inputs.skip != true
|
2024-06-03 12:03:26 +02:00
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: html-report
|
|
|
|
path: playwright-report
|
|
|
|
retention-days: 14
|
2024-06-07 19:07:12 +02:00
|
|
|
|
|
|
|
- if: needs.playwright.result != 'skipped' && needs.playwright.result != 'success'
|
|
|
|
run: exit 1
|