fix(deps): retain vite peers for vite-plus packages #38
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: 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: Audit dependencies | |
| run: pnpm audit:dependencies | |
| - 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 |