- Move services/nextjs/ to nextjs/ - Move Dockerfile.prod to Dockerfile at root - Remove deploy/ folder (K8s manifests moved to K3S-HOME/web-apps) - Remove .gitea/ workflows - Update GitHub Actions for new structure - Remove develop branch triggers
46 lines
979 B
YAML
46 lines
979 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
lint-and-build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: 'npm'
|
|
cache-dependency-path: nextjs/package-lock.json
|
|
|
|
- name: Install dependencies
|
|
working-directory: nextjs
|
|
run: npm ci
|
|
|
|
- name: Run ESLint
|
|
working-directory: nextjs
|
|
run: npm run lint
|
|
|
|
- name: Build Next.js application
|
|
working-directory: nextjs
|
|
run: npm run build
|
|
env:
|
|
NEXT_TELEMETRY_DISABLED: 1
|
|
|
|
- name: Check build output
|
|
working-directory: nextjs
|
|
run: |
|
|
if [ ! -d ".next" ]; then
|
|
echo "Build failed: .next directory not found"
|
|
exit 1
|
|
fi
|
|
echo "Build completed successfully"
|