feat: [QA][POLICY] Branch Protection + Mandatory Review Policy for All Repos (#918)
Some checks failed
CI / test (pull_request) Failing after 13s
CI / validate (pull_request) Failing after 4s

Refs #918
Agent: groq
This commit is contained in:
Alexander Whitestone
2026-04-07 05:03:45 -04:00
parent 4ee26ff938
commit 3518f0f2a2
4 changed files with 98 additions and 0 deletions

23
DEVELOPMENT.md Normal file
View File

@@ -0,0 +1,23 @@
# Development Workflow
## Branching Strategy
- Feature branches: `feature/your-name/feature-name`
- Hotfix branches: `hotfix/issue-number`
- Release branches: `release/x.y.z`
## Local Development
1. Clone repo: `git clone https://forge.alexanderwhitestone.com/Timmy_Foundation/the-nexus.git`
2. Create branch: `git checkout -b feature/your-feature`
3. Commit changes: `git commit -m "Fix: your change"`
4. Push branch: `git push origin feature/your-feature`
5. Create PR via Gitea UI
## Testing
- Unit tests: `npm test`
- Linting: `npm run lint`
- CI/CD: `npm run ci`
## Code Quality
- ✅ 100% test coverage
- ✅ Prettier formatting
- ✅ No eslint warnings