Skip to content

feat(schemas): validate metadata boundaries with valibot #33

feat(schemas): validate metadata boundaries with valibot

feat(schemas): validate metadata boundaries with valibot #33

name: Quality Checks
on:
push:
branches: [main, develop]
paths:
- 'skills/**/rules/**/*.md'
- '.agents/**/*.md'
- 'AGENTS.md'
- 'packages/**'
pull_request:
branches: [main, develop]
paths:
- 'skills/**/rules/**/*.md'
- '.agents/**/*.md'
- 'AGENTS.md'
- 'packages/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Setup pnpm
uses: pnpm/action-setup@v6
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version-file: '.node-version'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build packages
run: pnpm build
- name: Lint Markdown documentation and agent workflows
run: pnpm lint:md
- name: Check duplicate rule titles and tag sets
run: pnpm check-duplicates
- name: Check tag hygiene
run: pnpm check-tags
- name: Print skill statistics
run: pnpm stats