fix: seed-transpile-check CI step compiles test files against transpiled output

Skip test/script compilation in seed-transpile-check since the test
file references getLiquidityParams() which only exists in the checked-in
stub, not in transpiler output.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
johba 2026-03-22 21:23:57 +00:00
parent 6c5da5f2d5
commit f4ebfaf87c

View file

@ -132,7 +132,7 @@ steps:
continue continue
fi fi
echo "--- Compiling $name ---" echo "--- Compiling $name ---"
if ! (cd onchain && forge build --silent); then if ! (cd onchain && forge build --skip test script --silent); then
echo "FAIL: $name transpiled but Solidity compilation failed" >&2 echo "FAIL: $name transpiled but Solidity compilation failed" >&2
failed=1 failed=1
fi fi