Skip to content

feat(pyqs): add diagram attachments with AI context support #155

feat(pyqs): add diagram attachments with AI context support

feat(pyqs): add diagram attachments with AI context support #155

Workflow file for this run

name: CI Pipeline
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Format · Lint · Typecheck · Build
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
- name: Run ESLint
run: npm run lint
- name: TypeScript typecheck
run: npm run typecheck
- name: Run tests
run: npm test
- name: Build Next.js application
run: npm run build