We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7170acf + 0f78dd0 commit c445a46Copy full SHA for c445a46
1 file changed
.github/workflows/pages.yml
@@ -31,6 +31,15 @@ jobs:
31
- name: Install workspace deps
32
run: bun install --frozen-lockfile
33
34
+ - name: Compile contracts (produces artifacts + ABIs)
35
+ # ABIs are .gitignore'd — the SDK imports `./abis/*.json`, which
36
+ # only exist after hardhat compile + sync-abis. Without this step
37
+ # the next job fails with TS2307 "Cannot find module './abis/...'".
38
+ run: bun contracts:compile
39
+
40
+ - name: Sync compiled ABIs into the SDK
41
+ run: bun sdk:sync
42
43
- name: Build SDK (generates dist/ consumed by the webapp)
44
run: bun sdk:build
45
0 commit comments