riot-web/.github/workflows/tests.yml

108 lines
3.6 KiB
YAML
Raw Normal View History

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: {}
merge_group:
types: [checks_requested]
2022-12-12 12:24:14 +01:00
push:
branches: [develop, master]
repository_dispatch:
types: [upstream-sdk-notify]
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"
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
env:
ENABLE_COVERAGE: ${{ github.event_name != 'merge_group' && inputs.disable_coverage != 'true' }}
# fetchdep.sh needs to know our PR number
2022-12-12 12:24:14 +01:00
PR_NUMBER: ${{ github.event.pull_request.number }}
2022-03-10 14:17:01 +01:00
jobs:
2022-12-12 12:24:14 +01:00
jest:
name: Jest
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
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
uses: actions/setup-node@v4
2022-12-12 12:24:14 +01:00
with:
cache: "yarn"
- name: Install Deps
run: "./scripts/ci/install-deps.sh --ignore-scripts"
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
uses: actions/cache@v3
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
uses: SimenB/github-actions-cpu-cores@97ba232459a8e02ff6121db9362b09661c875ab8 # v2
2022-12-12 12:24:14 +01:00
- name: Run tests
run: |
yarn test \
--coverage=${{ env.ENABLE_COVERAGE }} \
--ci \
2023-03-03 10:38:04 +01:00
--max-workers ${{ steps.cpu-cores.outputs.count }} \
--cacheDirectory /tmp/jest_cache
2022-12-12 12:24:14 +01:00
- name: Upload Artifact
if: env.ENABLE_COVERAGE == 'true'
2022-12-12 12:24:14 +01:00
uses: actions/upload-artifact@v3
with:
name: coverage
path: |
coverage
!coverage/lcov-report
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
uses: Sibz/github-status-action@faaa4d96fecf273bd762985e0e7f9f933c774918 # v1
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:
- uses: actions/checkout@v4
with:
repository: ${{ inputs.matrix-js-sdk-sha && 'matrix-org/matrix-react-sdk' || github.repository }}
2022-12-12 12:24:14 +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"
env:
JS_SDK_GITHUB_BASE_REF: ${{ inputs.matrix-js-sdk-sha }}