Skip to content

chore: initialize project with strict quality checks #1

chore: initialize project with strict quality checks

chore: initialize project with strict quality checks #1

Workflow file for this run

name: Production Integrity Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
quality-check:
name: Lint, Typecheck & Test
runs-on: ubuntu-latest
steps:
- name: 🛑 Checkout Code
uses: actions/checkout@v4
- name: 🟢 Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: 📦 Install Dependencies
run: npm ci
- name: 🎨 Check Formatting (Prettier)
run: npx prettier --check .
- name: 🧹 Run Linter (ESLint)
run: npm run lint
- name: 📐 Type Check (TypeScript)
run: npx tsc --noEmit