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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
2.5 KiB
YAML
Raw Normal View History

2022-04-21 14:55:32 +03:00
name: Tests
2022-03-10 16:17:01 +03:00
on:
2022-04-21 14:55:32 +03:00
pull_request: {}
2022-03-10 16:17:01 +03:00
push:
2022-04-21 14:55:32 +03:00
branches: [develop, master]
repository_dispatch:
types: [upstream-sdk-notify]
workflow_call:
inputs:
matrix-js-sdk-sha:
type: string
required: false
description: "The matrix-js-sdk SHA to use"
env:
# These must be set for fetchdep.sh to get the right branch
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
2022-03-10 16:17:01 +03:00
jobs:
2022-04-21 14:55:32 +03:00
jest:
name: Jest
2022-03-10 16:17:01 +03:00
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
repository: ${{ inputs.matrix-js-sdk-sha && 'matrix-org/matrix-react-sdk' || github.repository }}
2022-12-12 14:24:14 +03:00
2022-03-10 16:17:01 +03:00
- name: Yarn cache
2022-04-21 14:55:32 +03:00
uses: actions/setup-node@v3
with:
cache: "yarn"
2022-12-12 14:24:14 +03:00
2022-03-10 16:17:01 +03:00
- 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 14:24:14 +03:00
2022-11-04 13:48:08 +03:00
- name: Get number of CPU cores
id: cpu-cores
uses: SimenB/github-actions-cpu-cores@v1
2022-12-12 14:24:14 +03:00
- name: Run tests with coverage and metrics
if: github.ref == 'refs/heads/develop'
run: "yarn coverage --ci --reporters github-actions '--reporters=<rootDir>/test/slowReporter.js' --max-workers ${{ steps.cpu-cores.outputs.count }}"
2022-12-12 14:24:14 +03:00
2022-03-10 16:17:01 +03:00
- name: Run tests with coverage
if: github.ref != 'refs/heads/develop'
2022-11-04 13:48:08 +03:00
run: "yarn coverage --ci --reporters github-actions --max-workers ${{ steps.cpu-cores.outputs.count }}"
2022-12-12 14:24:14 +03:00
- name: Upload Artifact
if: inputs.matrix-js-sdk-sha == ''
uses: actions/upload-artifact@v3
2022-03-10 16:17:01 +03:00
with:
name: coverage
path: |
coverage
!coverage/lcov-report
2022-12-12 14:24:14 +03:00
app-tests:
name: Element Web Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: ${{ inputs.matrix-js-sdk-sha && 'matrix-org/matrix-react-sdk' || github.repository }}
2022-12-12 14:24:14 +03:00
- uses: actions/setup-node@v3
with:
cache: "yarn"
2022-12-12 14:24:14 +03:00
- name: Run tests
run: "./scripts/ci/app-tests.sh"
env:
JS_SDK_GITHUB_BASE_REF: ${{ inputs.matrix-js-sdk-sha }}