feat(ci): add frontend build stage

This commit is contained in:
2026-06-24 12:12:38 +02:00
parent d1d49ecc49
commit bfafd63b33
2 changed files with 24 additions and 0 deletions
+15
View File
@@ -28,6 +28,21 @@ jobs:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 26
cache: 'npm'
cache-dependency-path: ./frontend/package-lock.json
- name: Install Dependencies
working-directory: ./frontend
run: npm ci
- name: Run Vite Build
working-directory: ./frontend
run: npm run build
- name: Set up Go
uses: actions/setup-go@v6
with: