Generated by Spark: Fix all reported errors.

This commit is contained in:
2026-01-17 09:40:28 +00:00
committed by GitHub
parent 23dfc2b92e
commit 4ab59a509f
5 changed files with 275 additions and 0 deletions

View File

@@ -77,9 +77,23 @@ jobs:
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Prepare build directories
run: |
mkdir -p /tmp/dist
mkdir -p dist
- name: Build application
run: npm run build
- name: Verify build output
run: |
if [ ! -f "dist/index.html" ]; then
echo "Error: Build failed - index.html not found"
exit 1
fi
echo "Build successful - all artifacts generated"
ls -lah dist/
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with: