Skip to content

feat: Add static demo mode with placeholder buttons and toast notific… #11

feat: Add static demo mode with placeholder buttons and toast notific…

feat: Add static demo mode with placeholder buttons and toast notific… #11

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Generate Prisma Client
run: pnpm exec prisma generate
working-directory: apps/api
- name: Lint
run: pnpm lint
- name: Type check
run: pnpm typecheck
- name: Build
run: pnpm build
- name: Test
run: pnpm --filter @docStudio/api test --passWithNoTests