CHORE(merge): merge from develop
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
CI / lint-and-build (push) Has been cancelled

- Initial setup and all features from develop branch
- Includes: auth, deploy, docker, style fixes
- K3S deployment configuration
This commit is contained in:
2026-01-06 17:29:16 +09:00
parent b4ce36ba3b
commit f78454c2a1
159 changed files with 18365 additions and 774 deletions

View File

@@ -19,24 +19,25 @@ jobs:
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: services/nextjs/package-lock.json
cache-dependency-path: nextjs/package-lock.json
- name: Install dependencies
working-directory: services/nextjs
working-directory: nextjs
run: npm ci
- name: Run ESLint
working-directory: services/nextjs
working-directory: nextjs
run: npm run lint
- name: Build Next.js application
working-directory: services/nextjs
working-directory: nextjs
run: npm run build
env:
NEXT_TELEMETRY_DISABLED: 1
DATABASE_URL: ${{ secrets.DATABASE_URL }}
- name: Check build output
working-directory: services/nextjs
working-directory: nextjs
run: |
if [ ! -d ".next" ]; then
echo "Build failed: .next directory not found"