docs: dedupe install examples, de-orphan build-output page, refresh agent records #64
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |