Skip to content

Feat: home search

Feat: home search #153

Workflow file for this run

name: Code Quality
on:
push:
pull_request:
jobs:
lint-and-format:
name: Lint & Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm lint
- name: Run Prettier check
run: pnpm format:check
- name: Run TypeScript check
run: pnpm typecheck
- name: Run site TypeScript check
run: pnpm site:typecheck
- name: Build cli
run: pnpm cli:build
- name: Build site
run: pnpm site:build