2022-04-21 13:55:32 +02:00
|
|
|
name: Tests
|
2022-03-10 14:17:01 +01:00
|
|
|
on:
|
2022-12-12 12:24:14 +01:00
|
|
|
pull_request: {}
|
2023-04-06 15:41:20 +02:00
|
|
|
merge_group:
|
|
|
|
types: [checks_requested]
|
2022-12-12 12:24:14 +01:00
|
|
|
push:
|
|
|
|
branches: [develop, master]
|
|
|
|
repository_dispatch:
|
|
|
|
types: [upstream-sdk-notify]
|
2023-02-20 12:41:36 +01:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
2023-02-21 10:57:43 +01:00
|
|
|
disable_coverage:
|
|
|
|
type: boolean
|
|
|
|
required: false
|
|
|
|
description: "Specify true to skip generating and uploading coverage for tests"
|
2023-02-20 12:41:36 +01:00
|
|
|
matrix-js-sdk-sha:
|
|
|
|
type: string
|
|
|
|
required: false
|
|
|
|
description: "The matrix-js-sdk SHA to use"
|
2023-04-06 10:57:51 +02:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
|
|
|
|
cancel-in-progress: true
|
2023-05-25 15:50:17 +02:00
|
|
|
|
2022-04-29 12:07:42 +02:00
|
|
|
env:
|
2023-04-06 15:41:20 +02:00
|
|
|
ENABLE_COVERAGE: ${{ github.event_name != 'merge_group' && inputs.disable_coverage != 'true' }}
|
2023-05-25 15:50:17 +02:00
|
|
|
# fetchdep.sh needs to know our PR number
|
2022-12-12 12:24:14 +01:00
|
|
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
2023-05-25 15:50:17 +02:00
|
|
|
|
2022-03-10 14:17:01 +01:00
|
|
|
jobs:
|
2022-12-12 12:24:14 +01:00
|
|
|
jest:
|
|
|
|
name: Jest
|
|
|
|
runs-on: ubuntu-latest
|
2024-01-05 17:59:48 +01:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
# Run multiple instances in parallel to speed up the tests
|
|
|
|
runner: [1, 2]
|
2022-12-12 12:24:14 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2023-09-06 20:30:45 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-02-20 12:41:36 +01:00
|
|
|
with:
|
|
|
|
repository: ${{ inputs.matrix-js-sdk-sha && 'matrix-org/matrix-react-sdk' || github.repository }}
|
2022-12-12 12:24:14 +01:00
|
|
|
|
|
|
|
- name: Yarn cache
|
2023-10-31 18:11:42 +01:00
|
|
|
uses: actions/setup-node@v4
|
2022-12-12 12:24:14 +01:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
|
|
|
|
|
|
|
- name: Install Deps
|
2024-06-06 10:57:28 +02:00
|
|
|
run: "./scripts/ci/install-deps.sh"
|
2023-02-20 12:41:36 +01:00
|
|
|
env:
|
|
|
|
JS_SDK_GITHUB_BASE_REF: ${{ inputs.matrix-js-sdk-sha }}
|
2022-12-12 12:24:14 +01:00
|
|
|
|
2023-03-03 10:38:04 +01:00
|
|
|
- name: Jest Cache
|
2024-02-02 18:33:13 +01:00
|
|
|
uses: actions/cache@v4
|
2023-03-03 10:38:04 +01:00
|
|
|
with:
|
|
|
|
path: /tmp/jest_cache
|
|
|
|
key: ${{ hashFiles('**/yarn.lock') }}
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
- name: Get number of CPU cores
|
|
|
|
id: cpu-cores
|
2023-09-22 02:15:45 +02:00
|
|
|
uses: SimenB/github-actions-cpu-cores@97ba232459a8e02ff6121db9362b09661c875ab8 # v2
|
2022-12-12 12:24:14 +01:00
|
|
|
|
2023-02-21 10:52:55 +01:00
|
|
|
- name: Run tests
|
|
|
|
run: |
|
2023-04-06 15:41:20 +02:00
|
|
|
yarn test \
|
|
|
|
--coverage=${{ env.ENABLE_COVERAGE }} \
|
2023-02-21 10:52:55 +01:00
|
|
|
--ci \
|
2023-03-03 10:38:04 +01:00
|
|
|
--max-workers ${{ steps.cpu-cores.outputs.count }} \
|
2024-01-05 17:59:48 +01:00
|
|
|
--shard ${{ matrix.runner }}/${{ strategy.job-total }} \
|
2023-03-03 10:38:04 +01:00
|
|
|
--cacheDirectory /tmp/jest_cache
|
2024-01-05 17:59:48 +01: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 12:24:14 +01:00
|
|
|
|
|
|
|
- name: Upload Artifact
|
2023-04-06 15:41:20 +02:00
|
|
|
if: env.ENABLE_COVERAGE == 'true'
|
2024-01-19 09:54:49 +01:00
|
|
|
uses: actions/upload-artifact@v4
|
2022-12-12 12:24:14 +01:00
|
|
|
with:
|
2024-01-19 09:54:49 +01:00
|
|
|
name: coverage-${{ matrix.runner }}
|
2022-12-12 12:24:14 +01:00
|
|
|
path: |
|
|
|
|
coverage
|
|
|
|
!coverage/lcov-report
|
|
|
|
|
2023-04-06 15:41:20 +02:00
|
|
|
skip_sonar:
|
|
|
|
name: Skip SonarCloud in merge queue
|
|
|
|
if: github.event_name == 'merge_group' || inputs.disable_coverage == 'true'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: jest
|
|
|
|
steps:
|
|
|
|
- name: Skip SonarCloud
|
2023-12-04 16:42:54 +01:00
|
|
|
uses: Sibz/github-status-action@071b5370da85afbb16637d6eed8524a06bc2053e # v1
|
2023-04-06 15:41:20 +02: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 }}
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
app-tests:
|
|
|
|
name: Element Web Integration Tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-06 20:30:45 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-02-20 12:41:36 +01:00
|
|
|
with:
|
|
|
|
repository: ${{ inputs.matrix-js-sdk-sha && 'matrix-org/matrix-react-sdk' || github.repository }}
|
2022-12-12 12:24:14 +01:00
|
|
|
|
2023-10-31 18:11:42 +01:00
|
|
|
- uses: actions/setup-node@v4
|
2022-12-12 12:24:14 +01:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: "./scripts/ci/app-tests.sh"
|
2023-02-20 12:41:36 +01:00
|
|
|
env:
|
|
|
|
JS_SDK_GITHUB_BASE_REF: ${{ inputs.matrix-js-sdk-sha }}
|