Skip to content

docs: Rewrite README with real pain points, limitations, and roadmap #6

docs: Rewrite README with real pain points, limitations, and roadmap

docs: Rewrite README with real pain points, limitations, and roadmap #6

Workflow file for this run

name: Code Quality
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
quality-checks:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.15.1'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run type checking
run: pnpm typecheck
- name: Run linting
run: pnpm lint