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

60 lines
1.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-04-21 13:55:32 +02:00
pull_request: { }
2022-03-10 14:17:01 +01:00
push:
2022-04-21 13:55:32 +02:00
branches: [ develop, master ]
repository_dispatch:
types: [ upstream-sdk-notify ]
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 14:17:01 +01:00
jobs:
2022-04-21 13:55:32 +02:00
jest:
name: Jest
2022-03-10 14:17:01 +01:00
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Yarn cache
2022-04-21 13:55:32 +02:00
uses: actions/setup-node@v3
with:
cache: 'yarn'
2022-03-10 14:17:01 +01:00
- name: Install Deps
run: "./scripts/ci/install-deps.sh --ignore-scripts"
2022-11-04 11:48:08 +01:00
- name: Get number of CPU cores
id: cpu-cores
uses: SimenB/github-actions-cpu-cores@v1
- 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-03-10 14:17:01 +01:00
- name: Run tests with coverage
if: github.ref != 'refs/heads/develop'
2022-11-04 11:48:08 +01:00
run: "yarn coverage --ci --reporters github-actions --max-workers ${{ steps.cpu-cores.outputs.count }}"
2022-03-10 14:17:01 +01:00
- name: Upload Artifact
uses: actions/upload-artifact@v2
2022-03-10 14:17:01 +01:00
with:
name: coverage
path: |
coverage
!coverage/lcov-report
app-tests:
name: Element Web Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
cache: 'yarn'
- name: Run tests
run: "./scripts/ci/app-tests.sh"