Skip to content

updated readme file #34

updated readme file

updated readme file #34

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
backend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm ci
# Optional: generate Prisma client and typecheck/build
- run: npm run build
- run: echo "Skipping lint/tests in CI for now"
frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm ci
- run: echo "Skipping frontend lint/tests in CI; handled by Vercel build"