Skip to content

Coverage

Coverage #10

Workflow file for this run

name: Coverage
# Repo-wide V8 coverage baseline, deliberately non-gating (no thresholds in
# vitest.config.ts). Removed from the PR gate: the report is only consumed by
# humans downloading the artifact, so a weekly run is enough. test:coverage
# sets OPENMAPX_SKIP_SLOW_CRYPTO=1 because v8 instrumentation inflates the
# real scrypt KDF tests ~4x past their timeout; the plain CI gate runs them
# for real.
on:
schedule:
- cron: "0 5 * * 1"
workflow_dispatch:
permissions:
contents: read
jobs:
coverage:
name: coverage
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test:coverage
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: coverage
path: coverage/
if-no-files-found: ignore
retention-days: 14