2022-05-16 16:23:44 +02:00
|
|
|
name: Tests
|
|
|
|
on:
|
2022-12-09 13:28:29 +01:00
|
|
|
pull_request: {}
|
|
|
|
push:
|
|
|
|
branches: [develop, master]
|
|
|
|
repository_dispatch:
|
|
|
|
types: [element-web-notify]
|
2022-05-16 16:23:44 +02:00
|
|
|
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 }}
|
2022-05-16 16:23:44 +02:00
|
|
|
jobs:
|
2022-12-09 13:28:29 +01:00
|
|
|
jest:
|
|
|
|
name: Jest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2023-09-05 19:31:32 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-05-16 16:23:44 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Yarn cache
|
2023-10-31 19:42:07 +01:00
|
|
|
uses: actions/setup-node@v4
|
2022-12-09 13:28:29 +01:00
|
|
|
with:
|
|
|
|
cache: "yarn"
|
2022-05-16 16:23:44 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: "./scripts/layered.sh"
|
2022-05-16 16:23:44 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Get number of CPU cores
|
|
|
|
id: cpu-cores
|
2023-09-22 02:24:03 +02:00
|
|
|
uses: SimenB/github-actions-cpu-cores@97ba232459a8e02ff6121db9362b09661c875ab8 # v2
|
2022-11-03 18:58:50 +01:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Run tests with coverage
|
2023-04-12 11:47:27 +02:00
|
|
|
run: "yarn coverage --ci --max-workers ${{ steps.cpu-cores.outputs.count }}"
|
2022-05-16 16:23:44 +02:00
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
- name: Upload Artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: coverage
|
|
|
|
path: |
|
|
|
|
coverage
|
|
|
|
!coverage/lcov-report
|