Skip to content

docs: dedupe install examples, de-orphan build-output page, refresh agent records #64

docs: dedupe install examples, de-orphan build-output page, refresh agent records

docs: dedupe install examples, de-orphan build-output page, refresh agent records #64

Workflow file for this run

name: CI
on:
push:
branches-ignore: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Audit dependencies
run: npm audit --audit-level=high
- name: Type-check declarations
run: npm run typecheck
- name: Run unit tests
run: npm test
- name: Build component bundle
run: npm run build:component:all
- name: Build VitePress docs
run: npm run docs:build
- name: Verify package contents
run: npm pack --dry-run