Merge pull request #1 from iamladi/feat/add-create-pr-command #3
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: Validate Plugin Schema | |
| on: | |
| push: | |
| branches: [main, master] | |
| paths: | |
| - '.claude-plugin/plugin.json' | |
| - '.github/workflows/validate-plugin.yml' | |
| pull_request: | |
| branches: [main, master] | |
| paths: | |
| - '.claude-plugin/plugin.json' | |
| - '.github/workflows/validate-plugin.yml' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Validate plugin.json schema | |
| run: bun run validate |