664 B
664 B
Development Workflow
Branching Strategy
- Feature branches:
feature/your-name/feature-name - Hotfix branches:
hotfix/issue-number - Release branches:
release/x.y.z
Local Development
- Clone repo:
git clone https://forge.alexanderwhitestone.com/Timmy_Foundation/the-nexus.git - Create branch:
git checkout -b feature/your-feature - Commit changes:
git commit -m "Fix: your change" - Push branch:
git push origin feature/your-feature - 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