Skip to content

test(coverage): drive mcp to >=95% line + branch coverage #10

test(coverage): drive mcp to >=95% line + branch coverage

test(coverage): drive mcp to >=95% line + branch coverage #10

Workflow file for this run

name: coverage
on:
pull_request:
branches: [master, main]
push:
branches: [master, main]
permissions:
contents: read
jobs:
coverage:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
# >=22 for --test-coverage-exclude support (added 22.5.0).
node-version: 22
cache: npm
- run: npm ci
- run: npm test -- --coverage
- uses: codecov/codecov-action@v4
if: always()
with:
fail_ci_if_error: false