- Bootstrap script for creating monorepo projects - FastAPI backend templates with uv, ruff, mypy, pytest - React frontend templates with TypeScript, ESLint, Prettier - Docker Compose setup with backend, frontend, and database - 9 development and CI scripts - Gitea Actions CI/CD workflows - Comprehensive documentation (8 files) - 45 template files for complete project structure - Automated verification script (all tests pass) - Based on coding-agent-rules standards
19 lines
257 B
Bash
Executable File
19 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Frontend CI test script
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../../frontend"
|
|
|
|
echo "Installing dependencies..."
|
|
npm ci
|
|
|
|
echo "Running linter..."
|
|
npm run lint
|
|
|
|
echo "Running tests with coverage..."
|
|
npm run test:coverage
|
|
|
|
echo "Frontend tests passed!"
|