-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (50 loc) · 2.12 KB
/
Copy pathci-cd.yml
File metadata and controls
61 lines (50 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# CI/CD: run on every push to main. Ensures lint and build pass.
# Deploy: connect this repo in Vercel and set Production Branch = main for auto-deploy.
name: CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
NODE_VERSION: "20"
jobs:
ci:
name: Lint & Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Generate Prisma Client
env:
# Prisma generate only needs DATABASE_URL to be set (not used at generate time)
DATABASE_URL: "postgresql://placeholder:placeholder@localhost:5432/placeholder"
DIRECT_URL: "postgresql://placeholder:placeholder@localhost:5432/placeholder"
run: npx prisma generate
- name: Lint
run: npm run lint
- name: Check required secrets (Clerk)
env:
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY || 'pk_test_placeholder' }}
run: |
if [ "$NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY" = "pk_test_placeholder" ]; then
echo "::error::Clerk keys are required for the build. Add these in GitHub: Settings → Secrets and variables → Actions → New repository secret"
echo " - NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY (from your .env)"
echo " - CLERK_SECRET_KEY (from your .env)"
exit 1
fi
- name: Build
env:
DATABASE_URL: ${{ secrets.DATABASE_URL || 'postgresql://placeholder:placeholder@localhost:5432/placeholder' }}
DIRECT_URL: ${{ secrets.DIRECT_URL || 'postgresql://placeholder:placeholder@localhost:5432/placeholder' }}
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }}
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
NEXT_PUBLIC_APP_URL: ${{ secrets.NEXT_PUBLIC_APP_URL || 'https://developers-doc-1.vercel.app' }}
run: npx next build --webpack