2022-04-21 19:55:32 +08:00
|
|
|
name: Tests
|
2022-03-10 21:17:01 +08:00
|
|
|
on:
|
2022-04-21 19:55:32 +08:00
|
|
|
pull_request: {}
|
2023-04-06 21:41:20 +08:00
|
|
|
merge_group:
|
|
|
|
types: [checks_requested]
|
2022-03-10 21:17:01 +08:00
|
|
|
push:
|
2022-04-21 19:55:32 +08:00
|
|
|
branches: [develop, master]
|
|
|
|
repository_dispatch:
|
2024-10-16 16:49:09 +08:00
|
|
|
types: [element-web-notify]
|
2023-02-20 19:41:36 +08:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
2023-02-21 17:57:43 +08:00
|
|
|
disable_coverage:
|
|
|
|
type: boolean
|
|
|
|
required: false
|
|
|
|
description: "Specify true to skip generating and uploading coverage for tests"
|
2023-02-20 19:41:36 +08:00
|
|
|
matrix-js-sdk-sha:
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
description: "The matrix-js-sdk SHA to use"
|
2023-04-06 16:57:51 +08:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
|
|
|
|
cancel-in-progress: true
|
2023-05-25 21:50:17 +08:00
|
|
|
|
2022-04-29 18:07:42 +08:00
|
|
|
env:
|
2023-04-06 21:41:20 +08:00
|
|
|
ENABLE_COVERAGE: ${{ github.event_name != 'merge_group' && inputs.disable_coverage != 'true' }}
|
2023-05-25 21:50:17 +08:00
|
|
|
# fetchdep.sh needs to know our PR number
|
2022-04-29 18:07:42 +08:00
|
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
2023-05-25 21:50:17 +08:00
|
|
|
|
2022-03-10 21:17:01 +08:00
|
|
|
jobs:
|
2022-04-21 19:55:32 +08:00
|
|
|
jest:
|
2022-05-03 04:34:31 +08:00
|
|
|
name: Jest
|
2024-10-14 20:38:03 +08:00
|
|
|
runs-on: ubuntu-22.04
|
2024-01-06 00:59:48 +08:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
# Run multiple instances in parallel to speed up the tests
|
|
|
|
runner: [1, 2]
|
2022-03-10 21:17:01 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2023-09-07 02:30:45 +08:00
|
|
|
uses: actions/checkout@v4
|
2023-02-20 19:41:36 +08:00
|
|
|
with:
|
2024-10-15 21:57:26 +08:00
|
|
|
repository: ${{ inputs.matrix-js-sdk-sha && 'element-hq/element-web' || github.repository }}
|
2022-12-12 19:24:14 +08:00
|
|
|
|
2022-03-10 21:17:01 +08:00
|
|
|
- name: Yarn cache
|
2023-11-01 01:11:42 +08:00
|
|
|
uses: actions/setup-node@v4
|
2022-04-21 19:55:32 +08:00
|
|
|
with:
|
2024-07-04 17:24:02 +08:00
|
|
|
node-version: "lts/*"
|
2022-04-21 19:55:32 +08:00
|
|
|
cache: "yarn"
|
2022-12-12 19:24:14 +08:00
|
|
|
|
2022-03-10 21:17:01 +08:00
|
|
|
- name: Install Deps
|
2024-10-16 02:16:13 +08:00
|
|
|
run: "./scripts/layered.sh"
|
2023-02-20 19:41:36 +08:00
|
|
|
env:
|
|
|
|
JS_SDK_GITHUB_BASE_REF: ${{ inputs.matrix-js-sdk-sha }}
|
2022-12-12 19:24:14 +08:00
|
|
|
|
2023-03-03 17:38:04 +08:00
|
|
|
- name: Jest Cache
|
2024-02-03 01:33:13 +08:00
|
|
|
uses: actions/cache@v4
|
2023-03-03 17:38:04 +08:00
|
|
|
with:
|
|
|
|
path: /tmp/jest_cache
|
|
|
|
key: ${{ hashFiles('**/yarn.lock') }}
|
|
|
|
|
2022-11-04 18:48:08 +08:00
|
|
|
- name: Get number of CPU cores
|
|
|
|
id: cpu-cores
|
2023-09-22 08:15:45 +08:00
|
|
|
uses: SimenB/github-actions-cpu-cores@97ba232459a8e02ff6121db9362b09661c875ab8 # v2
|
2022-12-12 19:24:14 +08:00
|
|
|
|
2023-02-21 17:52:55 +08:00
|
|
|
- name: Run tests
|
|
|
|
run: |
|
2023-04-06 21:41:20 +08:00
|
|
|
yarn test \
|
|
|
|
--coverage=${{ env.ENABLE_COVERAGE }} \
|
2023-02-21 17:52:55 +08:00
|
|
|
--ci \
|
2023-03-03 17:38:04 +08:00
|
|
|
--max-workers ${{ steps.cpu-cores.outputs.count }} \
|
2024-01-06 00:59:48 +08:00
|
|
|
--shard ${{ matrix.runner }}/${{ strategy.job-total }} \
|
2023-03-03 17:38:04 +08:00
|
|
|
--cacheDirectory /tmp/jest_cache
|
2024-01-06 00:59:48 +08:00
|
|
|
env:
|
|
|
|
JEST_SONAR_UNIQUE_OUTPUT_NAME: true
|
|
|
|
|
|
|
|
# tell jest to use coloured output
|
|
|
|
FORCE_COLOR: true
|
|
|
|
|
|
|
|
- name: Move coverage files into place
|
|
|
|
if: env.ENABLE_COVERAGE == 'true'
|
|
|
|
run: mv coverage/lcov.info coverage/${{ steps.setupNode.outputs.node-version }}-${{ matrix.runner }}.lcov.info
|
2022-12-12 19:24:14 +08:00
|
|
|
|
2022-05-03 04:34:31 +08:00
|
|
|
- name: Upload Artifact
|
2023-04-06 21:41:20 +08:00
|
|
|
if: env.ENABLE_COVERAGE == 'true'
|
2024-01-19 16:54:49 +08:00
|
|
|
uses: actions/upload-artifact@v4
|
2022-03-10 21:17:01 +08:00
|
|
|
with:
|
2024-01-19 16:54:49 +08:00
|
|
|
name: coverage-${{ matrix.runner }}
|
2022-05-03 04:34:31 +08:00
|
|
|
path: |
|
|
|
|
coverage
|
|
|
|
!coverage/lcov-report
|
2022-12-12 19:24:14 +08:00
|
|
|
|
2024-10-01 00:34:48 +08:00
|
|
|
complete:
|
|
|
|
name: jest-tests
|
2023-04-06 21:41:20 +08:00
|
|
|
needs: jest
|
2024-10-01 00:34:48 +08:00
|
|
|
if: always()
|
2024-10-14 20:38:03 +08:00
|
|
|
runs-on: ubuntu-22.04
|
2023-04-06 21:41:20 +08:00
|
|
|
steps:
|
2024-10-01 00:34:48 +08:00
|
|
|
- if: needs.jest.result != 'skipped' && needs.jest.result != 'success'
|
|
|
|
run: exit 1
|
|
|
|
|
|
|
|
- name: Skip SonarCloud in merge queue
|
|
|
|
if: github.event_name == 'merge_group' || inputs.disable_coverage == 'true'
|
2024-09-20 01:18:38 +08:00
|
|
|
uses: Sibz/github-status-action@faaa4d96fecf273bd762985e0e7f9f933c774918 # v1
|
2023-04-06 21:41:20 +08:00
|
|
|
with:
|
|
|
|
authToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
state: success
|
|
|
|
description: SonarCloud skipped
|
|
|
|
context: SonarCloud Code Analysis
|
|
|
|
sha: ${{ github.sha }}
|
|
|
|
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
|