chore(skills): add maintainer-triage skill for batch PR/issue triage #363
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: JSDoc Check | |
| on: | |
| pull_request: | |
| jobs: | |
| jsdoc-check: | |
| name: JSDoc Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Use Node.js 22 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| - name: Install packages | |
| run: npm ci | |
| - name: Run command registry JSDoc check | |
| run: npm run check:command-jsdoc |