chore: workflow documentation cleanup #1472
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: Code coverage | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
code-coverage-report: | |
name: Generate and upload coverage report | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PR branch | |
uses: actions/checkout@v4 | |
- name: Setup Job and Install Dependencies | |
uses: ./.github/actions/setup-job | |
- name: Install Playwright | |
run: yarn playwright install | |
- name: Run unit tests with coverage | |
run: yarn test:ci --config web-test-runner.config.ci-chromium.js --group no-memory-ci --coverage | |
continue-on-error: true | |
- name: Upload coverage to Coveralls | |
uses: coverallsapp/github-action@v2 |