Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# GitHub Actions

This repository **does not deploy to Vercel**.

Any historical Vercel / v0 auto-deploy workflows have been removed. Production runs on a **self-hosted DreamHost VPS** (Node + MySQL + nginx). See [README.md](../../README.md#production-deployment-dreamhost-vps-or-similar).

The only workflow here is optional CI (`ci.yml`) — lint and MySQL client checks only, no deploy step.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Self-hosted VPS app — CI only (no Vercel deploy).
name: CI

on:
push:
branches: [main, Cursor]
pull_request:
branches: [main, Cursor]

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm check:mysql
- run: pnpm lint
Loading