Conversation
…g and build processes
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
dnechay
requested changes
Feb 4, 2026
dnechay
reviewed
Feb 4, 2026
…and remove some test code
…M configurations for Job Launcher and Exchange Oracle
0e21c64 to
03ec930
Compare
…e in faucet server
82d10e1 to
648637a
Compare
dnechay
reviewed
Feb 9, 2026
Collaborator
dnechay
left a comment
There was a problem hiding this comment.
LGTM, one minor comment
dnechay
previously approved these changes
Feb 9, 2026
…t builds across apps
portuu3
approved these changes
Feb 10, 2026
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.
c## Issue tracking
#3772
Context behind the change
This PR updates the monorepo so most packages consume
@human-protocol/corefrom npm (instead of resolving it from the local workspace) to avoid rebuilding core on every CI/job. This removes a major build-time and keeps the repo history intact, while still allowing local core development when needed.Main changes:
@human-protocol/core: "npm:^5.0.1".cd-packages.yamlflow), so publishing and deployment steps can run earlier and independently.Changesets notes
To enable independent contract deployments, core needed its own Changesets flow. That introduced friction with Changesets dependency validation:
^5.0.1caused Changesets errors when the root Changesets config ignored@human-protocol/corebut non-ignored packages (SDK) depend on it.@human-protocol/corevianpm:^5.0.1and the rest of the packages using^5.0.1. This produces a warning during yarn changeset / yarn changeset version, and when running changeset version dependency ranges get updated for most packages but not for the SDK package (because of how Changesets applies dependency updates/validation in this split setup).How has this been tested?
Deployed all services and verified dependency resolution behavior: consumers resolve
@human-protocol/corefrom npm (not local) under the default Yarn config.Generated some changesets for testing purpose.
Built all docker images.
Release plan
-Core publishing is handled via the core-specific Changesets flow/workflow and should run before merging to develop when a core release is required
Potential risks; What to monitor; Rollback plan
Check services build time to make sure it is decreased considerably.
Check that all actions works fine.