Files
luna-recipes/.gitea/workflows/deploy.yml
clawd 8ba5eebd93
Some checks are pending
CI / 🔧 Backend Check (push) Waiting to run
CI / 🎨 Frontend Build (push) Waiting to run
Auto Deploy / ✅ Pre-Deploy Check (push) Waiting to run
Security Audit / 🔒 Backend Audit (push) Waiting to run
Security Audit / 🔒 Frontend Audit (push) Waiting to run
ci: auto-deploy pipeline — webhook triggers rebuild on push
2026-02-18 20:30:11 +00:00

21 lines
391 B
YAML

name: Auto Deploy
on:
push:
branches: [master]
jobs:
check:
name: ✅ Pre-Deploy Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: TypeScript Check Backend
working-directory: backend
run: npm ci && npx tsc --noEmit
- name: Build Frontend
working-directory: frontend
run: npm ci && npm run build