Skip to content

chore(deps-dev): bump typescript-eslint from 8.43.0 to 8.44.0 #18

chore(deps-dev): bump typescript-eslint from 8.43.0 to 8.44.0

chore(deps-dev): bump typescript-eslint from 8.43.0 to 8.44.0 #18

Workflow file for this run

name: Validate
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
ci:
name: Lint, Format, Typecheck, Build
runs-on: ubuntu-latest
# Playwright is required for mermaid diagrams support
container: mcr.microsoft.com/playwright:v1.55.0-jammy
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v5
- name: 📦 Setup pnpm
uses: pnpm/action-setup@v4
- name: 🧰 Setup Node
uses: actions/setup-node@v5
with:
node-version: '22.19.0'
cache: pnpm
- name: 📥 Install deps
run: pnpm i --frozen-lockfile
- name: 🎨 Format
run: pnpm format:check
- name: 🧹 Lint
run: pnpm lint:check
- name: ✂️ Knip
run: pnpm knip
- name: 🧪 Typecheck
run: pnpm typecheck
- name: 🏗️ Build
run: pnpm build