Skip to content

Feature: Detailed Scoring Mechanics Integration #123

Feature: Detailed Scoring Mechanics Integration

Feature: Detailed Scoring Mechanics Integration #123

Workflow file for this run

name: Quality
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: bobsgameweb/package-lock.json
- name: Install
working-directory: bobsgameweb
run: npm ci --legacy-peer-deps
- name: TypeScript Check
working-directory: bobsgameweb
run: npx tsc --noEmit 2>&1 || true
- name: Build Check
working-directory: bobsgameweb
run: npx vite build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: bobsgameweb/package-lock.json
- name: Install
working-directory: bobsgameweb
run: npm ci --legacy-peer-deps
- name: Lint
working-directory: bobsgameweb
run: npx biome check src/ server/ --max-diagnostics=50 || true