feat: add Ideas workflow for capturing and developing ideas (#7) #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 Framework | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - '.claude/commands/**' | |
| - 'templates/**' | |
| - 'CLAUDE.md' | |
| - 'README.md' | |
| - '.claude/synapse-config.json' | |
| - 'scripts/**' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - '.claude/commands/**' | |
| - 'templates/**' | |
| - 'CLAUDE.md' | |
| - 'README.md' | |
| - '.claude/synapse-config.json' | |
| - 'scripts/**' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run structural validation | |
| run: ./scripts/test-synapse.sh --structural |