Skip to content

docs: edit README.md #18

docs: edit README.md

docs: edit README.md #18

Workflow file for this run

name: CI Quality
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Quality Gates
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Linting & Formatting
run: pnpm lint
- name: Type Checking
run: pnpm type-check
- name: Unit Tests
run: pnpm test:unit --run
- name: Build Production
run: pnpm build
- name: Security Audit
run: pnpm audit