Merge pull request #241 from MeshJS/chore/remove-dead-proxy-state #24
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: PR Checks | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: pr-checks-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Generate Prisma client | |
| run: npx prisma generate | |
| # Lint stays non-blocking until the rule set is cleaned up; tracked separately. | |
| - name: Lint | |
| run: npm run lint | |
| continue-on-error: true | |
| # Typecheck, test, and build are gates — failures must fail the PR. | |
| - name: Type check | |
| run: npx tsc --noEmit | |
| - name: Test | |
| run: npm run test:ci | |
| - name: Build | |
| run: npm run build | |
| env: | |
| SKIP_ENV_VALIDATION: 'true' |