Skip to content

Restore CONTEXT.md and its test #76

Restore CONTEXT.md and its test

Restore CONTEXT.md and its test #76

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm audit --prod --audit-level=high
- run: pnpm check-types
- run: pnpm lint
- run: pnpm test
- run: pnpm build
app:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm --dir app audit --prod --audit-level=high
- name: App full audit (non-blocking visibility)
run: pnpm --dir app audit --prod
continue-on-error: true
- run: pnpm --dir app check-types
- run: pnpm --dir app lint
- run: pnpm --dir app test
- run: pnpm --dir app build