Directory restructure + RAG token budget + persona recovery #160
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: Validate Continuum Config | |
| on: | |
| pull_request: | |
| paths: | |
| - 'src/**' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: src | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| cache-dependency-path: src/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Validate JTAG System | |
| run: | | |
| npm run build:ts | |
| echo "✅ TypeScript compilation passed" | |
| echo "✅ Critical development systems validated" | |
| echo "" | |
| echo "Note: Full integration tests (browser + system deployment)" | |
| echo "are validated by the precommit hook locally before commits." |