I built a GitHub Action that blocks PRs when your Figma file is over budget
A developer has created a GitHub Action called Figcap that prevents pull requests from being merged if a Figma file exceeds budget constraints. The tool performs checks on design elements such as font pairs, frame nesting depth, and bitmap weight. This initiative aims to enhance design quality by catching issues before they escalate in cost post-launch.
- ▪Figcap is a GitHub Action that blocks PRs when a Figma file is over budget.
- ▪It runs checks on font pairs, frame nesting depth, and bitmap weight to ensure design quality.
- ▪The tool is designed to prevent costly design fixes after deployment.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3949189) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Adri2-2 Posted on May 24 I built a GitHub Action that blocks PRs when your Figma file is over budget #github #devops #figma #webdev Fixing a design decision after it ships costs roughly 100x more than catching it at the mockup stage. That ratio comes from Boehm (1981) and has been replicated since. The problem is not that teams ignore design quality, it's that nothing blocks a merge when the design is already over budget. Figcap is a GitHub Action.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).