You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ci: build the miner CLI before Typecheck, not after
benchmark.ts and cross-repo-evaluation.ts (packages/loopover-miner/scripts/) import
from this package's OWN ../dist/lib/*.js -- real .ts since this PR's port, so
Typecheck now actually opens and type-checks them, unlike when they were .mjs and
invisible to tsc. "Build miner CLI" ran well after Typecheck (down by "Miner
package check"), so a clean CI checkout hit Cannot find module on both scripts'
dist imports every run.
Same class of gap the contract/engine build-order fixes already cover, just for
the miner package's own dist rather than a workspace dependency's -- moved the
step ahead of Typecheck and widened its trigger to match Typecheck's exactly, for
the same reason those two already match: any trigger that typechecks must also
have built what typechecking reads.
Refs #9527
0 commit comments