ci: auto-deploy pipeline — webhook triggers rebuild on push
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

This commit is contained in:
clawd
2026-02-18 20:30:11 +00:00
parent c18f88d0d1
commit 8ba5eebd93
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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