Add focused Context.dev workflow skills #4
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 Cursor Plugin | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - ".cursor-plugin/**" | |
| - ".github/**" | |
| - "assets/**" | |
| - "commands/**" | |
| - "mcp.json" | |
| - "README.md" | |
| - "rules/**" | |
| - "scripts/**" | |
| - "skills/**" | |
| - "LICENSE" | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate plugin | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - name: Validate plugin structure | |
| run: node scripts/validate-plugin.mjs | |
| - name: Verify bundled skill is current | |
| run: node scripts/sync-skill.mjs --check | |
| - name: Check production MCP and OAuth discovery | |
| run: node scripts/check-mcp-oauth.mjs |