Skip to content

chore: workflow documentation cleanup #1472

chore: workflow documentation cleanup

chore: workflow documentation cleanup #1472

Workflow file for this run

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