Skip to content

Production upgrades: Node 24+ CI validation, Tauri desktop admin, GitHub UI theme, Vercel config, environment-based API config, dependency resolution, CI lock file, Vercel adapter #53

Production upgrades: Node 24+ CI validation, Tauri desktop admin, GitHub UI theme, Vercel config, environment-based API config, dependency resolution, CI lock file, Vercel adapter

Production upgrades: Node 24+ CI validation, Tauri desktop admin, GitHub UI theme, Vercel config, environment-based API config, dependency resolution, CI lock file, Vercel adapter #53

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
if: hashFiles('package.json') != ''
- run: npm run lint --if-present
- run: npm run typecheck --if-present
- run: npm test --if-present
- run: npm run build --if-present