Skip to content

Merge pull request #241 from MeshJS/chore/remove-dead-proxy-state #24

Merge pull request #241 from MeshJS/chore/remove-dead-proxy-state

Merge pull request #241 from MeshJS/chore/remove-dead-proxy-state #24

Workflow file for this run

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'