feat(prompts): add quick quote chains #1221
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "🛡️ CI / Automated Audit" | |
| on: | |
| push: | |
| branches: ["main"] | |
| paths-ignore: | |
| - "**.md" | |
| - "docs/**" | |
| - ".vscode/**" | |
| - ".idea/**" | |
| - ".github/**" | |
| - "!.github/workflows/ci.yml" | |
| - "LICENSE" | |
| - ".gitignore" | |
| pull_request: | |
| branches: ["main"] | |
| paths-ignore: | |
| - "**.md" | |
| - "docs/**" | |
| - ".vscode/**" | |
| - ".idea/**" | |
| - ".github/**" | |
| - "!.github/workflows/ci.yml" | |
| - "LICENSE" | |
| - ".gitignore" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| audit: | |
| name: "Audit Code Quality" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: 🎨 Check Code Format (Prettier) | |
| run: pnpm format:check | |
| - name: 🔍 Lint Code (ESLint) | |
| run: pnpm lint:check | |
| - name: 📐 Type Check (TypeScript) | |
| run: pnpm typecheck | |
| - name: 🏗️ Verify Build | |
| run: pnpm build |