feat: implement Contribution Forecast Engine (Phase 7)#6214
feat: implement Contribution Forecast Engine (Phase 7)#6214saidai-bhuvanesh wants to merge 3 commits into
Conversation
|
Someone is attempting to deploy a commit to the jhasourav07's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
🚨 Hey @saidai-bhuvanesh, the CI Pipeline is failing on this PR and it has been marked as Please fix the issues before this can be reviewed. Here's how: 1. Run checks locally before pushing: npm run format:check # Check Prettier formatting
npm run lint # Run ESLint
npm run typecheck # TypeScript type check
npm run test # Run unit tests (Vitest)
npm run build # Verify production build passes2. Auto-fix common issues: npm run format # Auto-fix formatting with Prettier
npm run lint -- --fix # Auto-fix lint errors where possible3. Check the full failure log here: Once you push a fix and the CI passes, the |
Aamod-Dev
left a comment
There was a problem hiding this comment.
Great work on the Contribution Forecast Engine component. The implementation in components/dashboard/ContributionForecast.test.tsx looks solid. However, this PR is blocked by a failing CI check. Please fix the typecheck and formatting issues so we can get this merged.
Overview
This PR implements Phase 7: Contribution Forecast Engine to predict future contribution growth using linear regression and weekly velocity averages.
Key Changes
ContributionForecast.test.tsxto verify velocity calculations, trend directions, and zero-activity states.Fixes #6213