ci: split CI workflow into independent re-runnable jobs#1110
Merged
Conversation
Split the single `build` job into 4 jobs (build → bundle, test → sonar) so that bundle and test run in parallel, and individual jobs can be re-run without restarting the entire pipeline. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 6522ba0:
|
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Runs formatting check and linting in parallel with build. Uses continue-on-error so failures show as warnings without blocking the pipeline. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Separate format check (prettier) and lint (eslint) into independent warn-only jobs. Cache node_modules alongside ~/.npm so yarn install is a no-op on cache hits across all 5 jobs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Convert require() calls to ES imports in Vue and React test files to fix no-var-requires errors. Exclude .vue files from root ESLint config since vue-eslint-parser is not installed. Fix prettier formatting in simple.spec.ts and angular-renderer.spec.ts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…o ci/split-workflow-jobs
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Split the single
buildjob into 4 jobs (build → bundle, test → sonar) so that bundle and test run in parallel, and individual jobs can be re-run without restarting the entire pipeline.