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

42 lines
1.2 KiB
YAML
Raw Normal View History

name: Tests
on:
2022-12-09 13:28:29 +01:00
pull_request: {}
push:
branches: [develop, master]
repository_dispatch:
types: [element-web-notify]
env:
2022-12-09 13:28:29 +01:00
# These must be set for fetchdep.sh to get the right branch
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
jobs:
2022-12-09 13:28:29 +01:00
jest:
name: Jest
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
2022-12-09 13:28:29 +01:00
- name: Yarn cache
uses: actions/setup-node@v3
with:
cache: "yarn"
2022-12-09 13:28:29 +01:00
- name: Install Dependencies
run: "./scripts/layered.sh"
2022-12-09 13:28:29 +01:00
- name: Get number of CPU cores
id: cpu-cores
uses: SimenB/github-actions-cpu-cores@v1
2022-11-03 18:58:50 +01:00
2022-12-09 13:28:29 +01:00
- name: Run tests with coverage
run: "yarn coverage --ci --reporters github-actions --max-workers ${{ steps.cpu-cores.outputs.count }}"
2022-12-09 13:28:29 +01:00
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: coverage
path: |
coverage
!coverage/lcov-report