mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-03-19 11:13:08 +00:00
Adds a sort check as a second step in the existing validate-marketplace workflow. The script supports --fix to sort in place. Sorts the existing 86 entries — pure reorder, no content change. Previously grouped loosely by kind (LSPs first, then internal, then external); now strictly alphabetical so insertion point is unambiguous.
21 lines
460 B
YAML
21 lines
460 B
YAML
name: Validate Marketplace JSON
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '.claude-plugin/marketplace.json'
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- name: Validate marketplace.json
|
|
run: bun .github/scripts/validate-marketplace.ts .claude-plugin/marketplace.json
|
|
|
|
- name: Check plugins sorted
|
|
run: bun .github/scripts/check-marketplace-sorted.ts
|