Skip to content

feat: examples page, scroll reset, bracket highlights, agent context arch, padding polish #198

feat: examples page, scroll reset, bracket highlights, agent context arch, padding polish

feat: examples page, scroll reset, bracket highlights, agent context arch, padding polish #198

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
quality:
name: Lint, Type-check & Test
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: Lint
run: npx eslint . --max-warnings 0
- name: Type-check
run: npx tsc --noEmit
- name: Test
run: npx vitest run