2022-06-07 10:03:25 +02:00
|
|
|
# Triggers after the layered build has finished, taking the artifact and running cypress on it
|
|
|
|
name: Cypress End to End Tests
|
|
|
|
on:
|
2022-12-12 12:24:14 +01:00
|
|
|
workflow_run:
|
|
|
|
workflows: ["Element Web - Build"]
|
|
|
|
types:
|
|
|
|
- completed
|
2023-02-23 04:57:48 +01:00
|
|
|
concurrency:
|
2023-04-05 18:45:45 +02:00
|
|
|
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch || github.run_id }}
|
2023-02-23 09:42:07 +01:00
|
|
|
cancel-in-progress: ${{ github.event.workflow_run.event == 'pull_request' }}
|
2022-06-07 10:03:25 +02:00
|
|
|
jobs:
|
2022-12-12 12:24:14 +01:00
|
|
|
prepare:
|
|
|
|
name: Prepare
|
|
|
|
if: github.event.workflow_run.conclusion == 'success'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
issues: read
|
|
|
|
statuses: write
|
|
|
|
pull-requests: read
|
|
|
|
outputs:
|
|
|
|
uuid: ${{ steps.uuid.outputs.value }}
|
|
|
|
pr_id: ${{ steps.prdetails.outputs.pr_id }}
|
|
|
|
commit_message: ${{ steps.commit.outputs.message }}
|
|
|
|
commit_author: ${{ steps.commit.outputs.author }}
|
|
|
|
commit_email: ${{ steps.commit.outputs.email }}
|
2023-03-23 15:55:16 +01:00
|
|
|
percy_enable: ${{ steps.percy.outputs.value || '0' }}
|
2023-03-22 11:31:15 +01:00
|
|
|
kiwi_enable: ${{ steps.kiwi.outputs.value || '1' }}
|
2022-12-12 12:24:14 +01:00
|
|
|
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 Cypress is done.
|
2023-03-10 13:56:27 +01:00
|
|
|
- uses: Sibz/github-status-action@faaa4d96fecf273bd762985e0e7f9f933c774918 # v1
|
2022-12-12 12:24:14 +01:00
|
|
|
with:
|
|
|
|
authToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
state: pending
|
2023-04-05 18:45:45 +02:00
|
|
|
context: ${{ github.workflow }} / cypress
|
2022-12-12 12:24:14 +01:00
|
|
|
sha: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
2022-09-09 01:05:05 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
- id: prdetails
|
2023-04-05 18:48:27 +02:00
|
|
|
if: github.event.workflow_run.event == 'pull_request' || github.event.workflow_run.event == 'merge_group'
|
2023-04-06 15:39:40 +02:00
|
|
|
uses: matrix-org/pr-details-action@v1.3
|
2022-12-12 12:24:14 +01:00
|
|
|
with:
|
|
|
|
owner: ${{ github.event.workflow_run.head_repository.owner.login }}
|
|
|
|
branch: ${{ github.event.workflow_run.head_branch }}
|
2022-06-07 10:03:25 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
- name: Get commit details
|
|
|
|
id: commit
|
2023-04-05 18:48:27 +02:00
|
|
|
if: github.event.workflow_run.event == 'pull_request' || github.event.workflow_run.event == 'merge_group'
|
2022-12-12 12:24:14 +01:00
|
|
|
uses: actions/github-script@v6
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
const response = await github.rest.git.getCommit({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
commit_sha: "${{ github.event.workflow_run.head_sha }}",
|
|
|
|
});
|
|
|
|
core.setOutput("message", response.data.message);
|
|
|
|
core.setOutput("author", response.data.author.name);
|
|
|
|
core.setOutput("email", response.data.author.email);
|
2022-09-07 13:48:37 +02:00
|
|
|
|
2023-03-23 15:55:16 +01:00
|
|
|
# Only run Percy when it is demanded or we are running the daily build
|
|
|
|
- name: Enable Percy if X-Needs-Percy
|
2023-02-16 11:06:33 +01:00
|
|
|
id: percy
|
|
|
|
if: |
|
2023-03-23 15:55:16 +01:00
|
|
|
github.event.workflow_run.event == 'schedule' ||
|
|
|
|
(
|
2023-04-06 16:30:56 +02:00
|
|
|
github.event.workflow_run.event == 'merge_queue' &&
|
2023-03-23 15:55:16 +01:00
|
|
|
contains(fromJSON(steps.prdetails.outputs.data).labels.*.name, 'X-Needs-Percy')
|
|
|
|
)
|
2023-04-12 14:06:30 +02:00
|
|
|
run: echo "value=1" >> $GITHUB_OUTPUT
|
2023-02-16 11:06:33 +01:00
|
|
|
|
2023-03-22 11:31:15 +01:00
|
|
|
# Only export to kiwi when it is demanded or on develop
|
|
|
|
- name: Disable Kiwi if not needed
|
|
|
|
id: kiwi
|
2022-12-15 13:04:03 +01:00
|
|
|
if: |
|
|
|
|
github.event.workflow_run.event == 'pull_request' &&
|
2023-03-22 11:31:15 +01:00
|
|
|
!contains(fromJSON(steps.prdetails.outputs.data).labels.*.name, 'X-Send-Kiwi')
|
2023-04-12 14:06:30 +02:00
|
|
|
run: echo "value=0" >> $GITHUB_OUTPUT
|
2022-12-15 13:04:03 +01:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
- name: Generate unique ID 💎
|
|
|
|
id: uuid
|
2023-04-12 14:06:30 +02:00
|
|
|
run: echo "value=sha-$GITHUB_SHA-time-$(date +"%s")" >> $GITHUB_OUTPUT
|
2022-09-07 13:48:37 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
tests:
|
|
|
|
name: "Run Tests"
|
|
|
|
needs: prepare
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
issues: read
|
|
|
|
pull-requests: read
|
2023-01-12 16:16:05 +01:00
|
|
|
environment: Cypress
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
# Run 4 instances in Parallel
|
|
|
|
runner: [1, 2, 3, 4]
|
2022-12-12 12:24:14 +01:00
|
|
|
steps:
|
2023-04-18 18:00:30 +02:00
|
|
|
- uses: browser-actions/setup-chrome@c485fa3bab6be59dce18dbc18ef6ab7cbc8ff5f1
|
2023-01-12 16:16:05 +01:00
|
|
|
- run: echo "BROWSER_PATH=$(which chrome)" >> $GITHUB_ENV
|
|
|
|
|
2023-03-10 13:56:27 +01:00
|
|
|
- uses: tecolicom/actions-use-apt-tools@ceaf289fdbc6169fd2406a0f0365a584ffba003b # v1
|
2023-01-06 05:11:41 +01:00
|
|
|
with:
|
|
|
|
# Our test suite includes some screenshot tests with unusual diacritics, which are
|
|
|
|
# supposed to be covered by STIXGeneral.
|
|
|
|
tools: fonts-stix
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
# There's a 'download artifact' action, but it hasn't been updated for the workflow_run action
|
|
|
|
# (https://github.com/actions/download-artifact/issues/60) so instead we get this mess:
|
|
|
|
- name: 📥 Download artifact
|
2023-03-10 13:56:27 +01:00
|
|
|
uses: dawidd6/action-download-artifact@5e780fc7bbd0cac69fc73271ed86edf5dcb72d67 # v2
|
2022-12-12 12:24:14 +01:00
|
|
|
with:
|
|
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
|
|
name: previewbuild
|
2023-04-24 10:24:50 +02:00
|
|
|
|
2023-04-26 18:35:45 +02:00
|
|
|
# This is necessary as Cypress relies on eval for passing functions between processes
|
|
|
|
- name: Allow CSP script-src unsafe-eval
|
2023-04-26 18:46:02 +02:00
|
|
|
run: sed -i "s/script-src /script-src 'unsafe-eval' /" webapp/index.html
|
2023-04-26 18:35:45 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
- name: Run Cypress tests
|
2023-04-26 07:08:25 +02:00
|
|
|
uses: cypress-io/github-action@59c3b9b4a1a6e623c29806797d849845443487d1
|
2022-12-12 12:24:14 +01:00
|
|
|
with:
|
|
|
|
# The built-in Electron runner seems to grind to a halt trying
|
|
|
|
# to run the tests, so use chrome.
|
2023-01-12 16:16:05 +01:00
|
|
|
browser: "${{ env.BROWSER_PATH }}"
|
2023-04-26 18:46:02 +02:00
|
|
|
start: npx serve -p 8080 webapp
|
2022-12-12 12:24:14 +01:00
|
|
|
wait-on: "http://localhost:8080"
|
2023-01-12 16:16:05 +01:00
|
|
|
record: true
|
|
|
|
parallel: true
|
|
|
|
command-prefix: "yarn percy exec --parallel --"
|
2022-12-15 13:04:03 +01:00
|
|
|
config: '{"reporter":"cypress-multi-reporters", "reporterOptions": { "configFile": "cypress-ci-reporter-config.json" } }'
|
2022-12-12 12:24:14 +01:00
|
|
|
ci-build-id: ${{ needs.prepare.outputs.uuid }}
|
|
|
|
env:
|
|
|
|
# pass the Dashboard record key as an environment variable
|
|
|
|
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|
2022-09-07 13:48:37 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
# Use existing chromium rather than downloading another
|
|
|
|
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
|
2022-09-07 13:48:37 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
# pass GitHub token to allow accurately detecting a build vs a re-run build
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-09-07 13:48:37 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
# make Node's os.tmpdir() return something where we actually have permissions
|
|
|
|
TMPDIR: ${{ runner.temp }}
|
2022-09-07 13:48:37 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
# tell Cypress more details about the context of this run
|
|
|
|
COMMIT_INFO_BRANCH: ${{ github.event.workflow_run.head_branch }}
|
|
|
|
COMMIT_INFO_SHA: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
COMMIT_INFO_REMOTE: ${{ github.repositoryUrl }}
|
|
|
|
COMMIT_INFO_MESSAGE: ${{ needs.prepare.outputs.commit_message }}
|
|
|
|
COMMIT_INFO_AUTHOR: ${{ needs.prepare.outputs.commit_author }}
|
|
|
|
COMMIT_INFO_EMAIL: ${{ needs.prepare.outputs.commit_email }}
|
2023-01-13 11:35:45 +01:00
|
|
|
CYPRESS_PULL_REQUEST_ID: ${{ needs.prepare.outputs.pr_id }}
|
|
|
|
CYPRESS_PULL_REQUEST_URL: https://github.com/${{ github.repository }}/pull/${{ needs.prepare.outputs.pr_id }}
|
2022-06-07 10:03:25 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
# pass the Percy token as an environment variable
|
|
|
|
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
|
2023-02-16 11:06:33 +01:00
|
|
|
PERCY_ENABLE: ${{ needs.prepare.outputs.percy_enable }}
|
2022-12-12 12:24:14 +01:00
|
|
|
PERCY_BROWSER_EXECUTABLE: /usr/bin/chromium-browser
|
|
|
|
# tell Percy more details about the context of this run
|
|
|
|
PERCY_BRANCH: ${{ github.event.workflow_run.head_branch }}
|
|
|
|
PERCY_COMMIT: ${{ github.event.workflow_run.head_sha }}
|
2023-01-12 16:16:05 +01:00
|
|
|
PERCY_PULL_REQUEST: ${{ needs.prepare.outputs.pr_id }}
|
2022-12-12 12:24:14 +01:00
|
|
|
PERCY_PARALLEL_NONCE: ${{ needs.prepare.outputs.uuid }}
|
2023-02-23 12:10:11 +01:00
|
|
|
# We manually finalize the build in the report stage
|
|
|
|
PERCY_PARALLEL_TOTAL: -1
|
2022-06-07 10:03:25 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
- name: Upload Artifact
|
|
|
|
if: failure()
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: cypress-results
|
|
|
|
path: |
|
|
|
|
cypress/screenshots
|
|
|
|
cypress/videos
|
|
|
|
cypress/synapselogs
|
2022-06-07 10:03:25 +02:00
|
|
|
|
2022-12-15 13:04:03 +01:00
|
|
|
- name: Upload reports
|
|
|
|
if: always()
|
2023-04-12 14:06:30 +02:00
|
|
|
uses: actions/upload-artifact@v3
|
2022-12-15 13:04:03 +01:00
|
|
|
with:
|
|
|
|
name: cypress-junit
|
|
|
|
path: cypress/results
|
2023-02-23 12:10:11 +01:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
report:
|
|
|
|
name: Report results
|
2023-02-23 12:10:11 +01:00
|
|
|
needs:
|
|
|
|
- prepare
|
|
|
|
- tests
|
2022-12-12 12:24:14 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: always()
|
|
|
|
permissions:
|
|
|
|
statuses: write
|
|
|
|
steps:
|
2023-02-23 12:10:11 +01:00
|
|
|
- name: Finalize Percy
|
|
|
|
if: needs.prepare.outputs.percy_enable == '1'
|
|
|
|
run: npx -p @percy/cli percy build:finalize
|
|
|
|
env:
|
2023-02-23 12:34:20 +01:00
|
|
|
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
|
2023-02-23 12:10:11 +01:00
|
|
|
PERCY_PARALLEL_NONCE: ${{ needs.prepare.outputs.uuid }}
|
|
|
|
|
2023-02-23 16:57:29 +01:00
|
|
|
- name: Skip Percy required check
|
|
|
|
if: needs.prepare.outputs.percy_enable != '1'
|
2023-03-10 13:56:27 +01:00
|
|
|
uses: Sibz/github-status-action@faaa4d96fecf273bd762985e0e7f9f933c774918 # v1
|
2023-02-23 16:57:29 +01:00
|
|
|
with:
|
|
|
|
authToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
state: success
|
|
|
|
description: Percy skipped
|
|
|
|
context: percy/matrix-react-sdk
|
|
|
|
sha: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
|
|
|
|
2023-03-10 13:56:27 +01:00
|
|
|
- uses: Sibz/github-status-action@faaa4d96fecf273bd762985e0e7f9f933c774918 # v1
|
2022-12-12 12:24:14 +01:00
|
|
|
with:
|
|
|
|
authToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
state: ${{ needs.tests.result == 'success' && 'success' || 'failure' }}
|
2023-04-05 18:45:45 +02:00
|
|
|
context: ${{ github.workflow }} / cypress
|
2022-12-12 12:24:14 +01:00
|
|
|
sha: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
2023-02-23 12:10:11 +01:00
|
|
|
|
2023-03-22 11:31:15 +01:00
|
|
|
kiwi:
|
|
|
|
name: Report results to kiwi
|
2022-12-15 13:04:03 +01:00
|
|
|
needs:
|
|
|
|
- prepare
|
|
|
|
- tests
|
2023-03-22 11:31:15 +01:00
|
|
|
environment: Kiwi
|
2022-12-15 13:04:03 +01:00
|
|
|
runs-on: ubuntu-latest
|
2023-04-03 10:54:49 +02:00
|
|
|
if: ${{ needs.prepare.outputs.kiwi_enable == '1' }}
|
2022-12-15 13:04:03 +01:00
|
|
|
steps:
|
2023-03-22 11:31:15 +01:00
|
|
|
- name: Download all zip files
|
|
|
|
uses: actions/download-artifact@v3
|
2022-12-15 13:04:03 +01:00
|
|
|
with:
|
|
|
|
name: cypress-junit
|
2023-03-22 11:31:15 +01:00
|
|
|
- name: Upload to kiwi
|
|
|
|
uses: vector-im/kiwitcms-upload-action@main
|
2022-12-15 13:04:03 +01:00
|
|
|
with:
|
2023-03-22 11:31:15 +01:00
|
|
|
file-pattern: results-*.xml
|
|
|
|
kiwi-username: ${{ secrets.TCMS_USERNAME }}
|
|
|
|
kiwi-password: ${{ secrets.TCMS_PASSWORD }}
|
|
|
|
product: "Element Web"
|
|
|
|
product-version: ${{ github.event.workflow_run.head_branch }}
|
|
|
|
build-id: ${{ github.event.workflow_run.head_sha }}
|
|
|
|
suite-name: "Cypress E2E"
|
|
|
|
summary-template: "$name"
|