feat: Add GitHub Actions CI for PR protection

- Add CI workflow with Python (ruff lint, security tests) and UI (ESLint, TypeScript, build) jobs
- Add ruff, mypy, pytest to requirements.txt
- Add pyproject.toml with ruff configuration
- Fix import sorting across Python files (ruff --fix)
- Fix test_security.py expectations to match actual security policy
- Remove invalid 'eof' command from ALLOWED_COMMANDS

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Auto
2026-01-07 10:35:19 +02:00
parent 17b7354db8
commit 122f03dc21
28 changed files with 144 additions and 85 deletions

View File

@@ -5,17 +5,17 @@ Features Router
API endpoints for feature/test case management.
"""
import re
import logging
from pathlib import Path
import re
from contextlib import contextmanager
from pathlib import Path
from fastapi import APIRouter, HTTPException
from ..schemas import (
FeatureCreate,
FeatureResponse,
FeatureListResponse,
FeatureResponse,
)
# Lazy imports to avoid circular dependencies
@@ -45,7 +45,7 @@ def _get_db_classes():
root = Path(__file__).parent.parent.parent
if str(root) not in sys.path:
sys.path.insert(0, str(root))
from api.database import create_database, Feature
from api.database import Feature, create_database
_create_database = create_database
_Feature = Feature
return _create_database, _Feature
@@ -110,7 +110,7 @@ async def list_features(project_name: str):
raise HTTPException(status_code=404, detail=f"Project '{project_name}' not found in registry")
if not project_dir.exists():
raise HTTPException(status_code=404, detail=f"Project directory not found")
raise HTTPException(status_code=404, detail="Project directory not found")
db_file = project_dir / "features.db"
if not db_file.exists():
@@ -142,7 +142,7 @@ async def list_features(project_name: str):
)
except HTTPException:
raise
except Exception as e:
except Exception:
logger.exception("Database error in list_features")
raise HTTPException(status_code=500, detail="Database error occurred")
@@ -157,7 +157,7 @@ async def create_feature(project_name: str, feature: FeatureCreate):
raise HTTPException(status_code=404, detail=f"Project '{project_name}' not found in registry")
if not project_dir.exists():
raise HTTPException(status_code=404, detail=f"Project directory not found")
raise HTTPException(status_code=404, detail="Project directory not found")
_, Feature = _get_db_classes()
@@ -187,7 +187,7 @@ async def create_feature(project_name: str, feature: FeatureCreate):
return feature_to_response(db_feature)
except HTTPException:
raise
except Exception as e:
except Exception:
logger.exception("Failed to create feature")
raise HTTPException(status_code=500, detail="Failed to create feature")
@@ -202,7 +202,7 @@ async def get_feature(project_name: str, feature_id: int):
raise HTTPException(status_code=404, detail=f"Project '{project_name}' not found in registry")
if not project_dir.exists():
raise HTTPException(status_code=404, detail=f"Project directory not found")
raise HTTPException(status_code=404, detail="Project directory not found")
db_file = project_dir / "features.db"
if not db_file.exists():
@@ -220,7 +220,7 @@ async def get_feature(project_name: str, feature_id: int):
return feature_to_response(feature)
except HTTPException:
raise
except Exception as e:
except Exception:
logger.exception("Database error in get_feature")
raise HTTPException(status_code=500, detail="Database error occurred")
@@ -235,7 +235,7 @@ async def delete_feature(project_name: str, feature_id: int):
raise HTTPException(status_code=404, detail=f"Project '{project_name}' not found in registry")
if not project_dir.exists():
raise HTTPException(status_code=404, detail=f"Project directory not found")
raise HTTPException(status_code=404, detail="Project directory not found")
_, Feature = _get_db_classes()
@@ -252,7 +252,7 @@ async def delete_feature(project_name: str, feature_id: int):
return {"success": True, "message": f"Feature {feature_id} deleted"}
except HTTPException:
raise
except Exception as e:
except Exception:
logger.exception("Failed to delete feature")
raise HTTPException(status_code=500, detail="Failed to delete feature")
@@ -272,7 +272,7 @@ async def skip_feature(project_name: str, feature_id: int):
raise HTTPException(status_code=404, detail=f"Project '{project_name}' not found in registry")
if not project_dir.exists():
raise HTTPException(status_code=404, detail=f"Project directory not found")
raise HTTPException(status_code=404, detail="Project directory not found")
_, Feature = _get_db_classes()
@@ -292,6 +292,6 @@ async def skip_feature(project_name: str, feature_id: int):
return {"success": True, "message": f"Feature {feature_id} moved to end of queue"}
except HTTPException:
raise
except Exception as e:
except Exception:
logger.exception("Failed to skip feature")
raise HTTPException(status_code=500, detail="Failed to skip feature")