Skip to content

feat(browser): adopt lightpanda via browser-manager subsystem #8

feat(browser): adopt lightpanda via browser-manager subsystem

feat(browser): adopt lightpanda via browser-manager subsystem #8

Workflow file for this run

# Coverage workflow — runs on every PR and push to main.
# Linux-only: coverage collection does not need cross-platform redundancy.
name: Coverage
on:
pull_request:
push:
branches:
- main
jobs:
coverage:
name: "coverage — ubuntu"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests with coverage
run: npm run test:coverage
# Upload full coverage report as an artifact for inspection; summary
# appears in the Actions job log via @vitest/coverage-v8.
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
path: coverage/
retention-days: 14