V48 Gate 3 (specification-only): correct the staging-testnet Supabase… #1273
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: Casing and Import Consistency | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "**" ] | |
| jobs: | |
| check-casing-and-imports: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: Verify raw_promptparts filenames are lowercase | |
| run: bash scripts/find-uppercase-raw-promptparts.sh | |
| - name: Detect import casing mismatches (ts/js) | |
| run: bash scripts/check-import-casing.sh | |