All checks were successful
CI/CD — Build & Deploy / Build & Deploy (push) Successful in 22s
Core logic portable (economy, balance, cosmetics, migrateSave) — zero rewrite. 136 tests green, identiques. Backend inchangé. - Svelte 5 runes stores (game, auth, toast) remplacent Zustand - SvelteKit adapter-static SPA (dist/ output, fallback index.html) - Tailwind v4 conservé, design system .gp-* porté - Transitions natives : slide, fly, scale, fade sur toute l'UI - Sidebar tabbée (Production/Evolution/Collection) + CollapsiblePanel - Mobile bottom sheet avec FAB toggle + backdrop blur - Click particles réactifs Svelte (plus de DOM impératif) - TadpoleSprite bounce + glow ring au clic - Guide refait en accordéon, Achievements avec filtres - a11y : focus-visible, Escape modals, aria-current, aria-labels - CI/CD adapté (tests + build + rsync) - Build 504K (vs ~1.2MB React)
68 lines
2.6 KiB
YAML
68 lines
2.6 KiB
YAML
name: CI/CD — Build & Deploy
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
name: Build & Deploy
|
|
runs-on: vps-runner
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
# ── Backend ──────────────────────────────────────────────────────────────
|
|
- name: Install backend deps
|
|
working-directory: Backend
|
|
run: npm ci --omit=dev
|
|
|
|
- name: Deploy backend
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
run: |
|
|
mkdir -p /var/www/clickerz/backend
|
|
rsync -a --delete --exclude=node_modules --exclude=.env Backend/ /var/www/clickerz/backend/
|
|
cd /var/www/clickerz/backend && npm ci --omit=dev
|
|
|
|
- name: Restart pm2
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
run: |
|
|
su - tetardtek-brain -c 'pm2 reload clickerz-backend --update-env'
|
|
|
|
# ── Frontend ─────────────────────────────────────────────────────────────
|
|
- name: Install & build frontend
|
|
working-directory: Frontend
|
|
env:
|
|
VITE_BACKEND_URL: https://clickerz.tetardtek.com
|
|
VITE_OAUTH_URL: https://superoauth.tetardtek.com
|
|
VITE_OAUTH_CLIENT_ID: clickerz
|
|
run: |
|
|
npm ci
|
|
npm run build
|
|
|
|
- name: Run frontend tests
|
|
working-directory: Frontend
|
|
run: npx vitest run
|
|
|
|
- name: Deploy frontend
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
run: |
|
|
mkdir -p /var/www/clickerz/frontend/dist
|
|
rsync -a --delete Frontend/dist/ /var/www/clickerz/frontend/dist/
|
|
echo "✅ Frontend Svelte deployed"
|
|
|
|
# ── Smoke test ───────────────────────────────────────────────────────────
|
|
- name: Smoke test API
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
run: |
|
|
sleep 3
|
|
HTTP_CODE=$(curl -s -o /dev/null -w '%{http_code}' http://localhost:3520/api/auth/me)
|
|
if [ "$HTTP_CODE" = "401" ] || [ "$HTTP_CODE" = "200" ]; then
|
|
echo "✅ API responds OK (HTTP $HTTP_CODE)"
|
|
else
|
|
echo "❌ API unreachable (HTTP $HTTP_CODE)"
|
|
exit 1
|
|
fi
|