Tests #11467
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request: {} | |
push: | |
branches: [develop, master] | |
merge_group: | |
types: [checks_requested] | |
repository_dispatch: | |
types: [element-web-notify] | |
env: | |
# These must be set for fetchdep.sh to get the right branch | |
REPOSITORY: ${{ github.repository }} | |
PR_NUMBER: ${{ github.event.pull_request.number }} | |
jobs: | |
jest: | |
name: Jest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Yarn cache | |
uses: actions/setup-node@v4 | |
with: | |
cache: "yarn" | |
node-version: "lts/*" | |
- name: Install Dependencies | |
run: "./scripts/layered.sh" | |
- name: Get number of CPU cores | |
id: cpu-cores | |
uses: SimenB/github-actions-cpu-cores@97ba232459a8e02ff6121db9362b09661c875ab8 # v2 | |
- name: Run tests with coverage | |
run: "yarn coverage --ci --max-workers ${{ steps.cpu-cores.outputs.count }}" | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: | | |
coverage | |
!coverage/lcov-report | |
skip_sonar: | |
name: Skip SonarCloud in merge queue | |
if: github.event_name == 'merge_group' | |
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 }} |