move out from misc #1
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: Schema CI | |
| on: | |
| push: | |
| branches: [main, refactor] | |
| paths: ['schemas/**', 'virtuals.js', 'index.js'] | |
| pull_request: | |
| branches: [main] | |
| paths: ['schemas/**', 'virtuals.js', 'index.js'] | |
| jobs: | |
| check: | |
| name: Structure & Type Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run structure check | |
| run: node check-structure.js |