Uh oh!
There was an error while loading. Please reload this page.
chore: make autofix workflow steps parallel - #2971
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
📝 WalkthroughWalkthroughThe four autofix workflow steps (CSS class lint, translation comparison, lunaria data build, and lint fixing) in ChangesAutofix Workflow Parallelisation
🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Uh oh!
There was an error while loading. Please reload this page.
🔗 Linked issue
🧭 Context
Using GitHub's new parallel feature for action steps: https://github.blog/changelog/2026-06-25-actions-steps-can-now-be-run-in-parallel/
I went through all our GitHub actions and this was the only place where we can really safe some seconds and where parallelism is possible.
📚 Description
This PR wraps the four main steps in the
autofix.ymlaction in a parallel block, so they are executed simultaneously. This is only possible because they do not depend on each other:lint:cssandi18n:checkonly readbuild:lunariaonly generates files underdist/lunarialint:fixdoes not touch build outputs