Files
stock-listing-app/.gitea/workflows/ci.yml
T
exe.dev user 5b17f7e2c8
CI / typecheck (push) Failing after 1m57s
Wire CI/CD (Gitea Actions typecheck) and daily Postgres backup
- .gitea/workflows/ci.yml runs pnpm typecheck on the already-registered
  forge-runner on push/PR to main
- scripts/backup-db.sh + a systemd user timer (stock-app-backup.timer, daily)
  pg_dump the stocklist Postgres container to ~/backups, pruned to 14 days
2026-07-29 12:20:35 +00:00

19 lines
329 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: corepack enable
- run: pnpm install --frozen-lockfile
- run: pnpm typecheck