Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,15 @@ jobs:
run: test -f target/wasm32-unknown-unknown/release/earnings.wasm
working-directory: contract

# Verifies the test-consumer WASM builds cleanly — cargo test uses the host target and does not catch wasm-only build errors.
- name: Build wasm release for test-consumer contract
run: cargo build --release --target wasm32-unknown-unknown -p test-consumer
working-directory: contract

- name: Verify test-consumer.wasm artifact exists
run: test -f target/wasm32-unknown-unknown/release/test_consumer.wasm
working-directory: contract

- name: Verify creator-registry wasm
run: |
wasm_path="target/wasm32-unknown-unknown/release/creator_registry.wasm"
Expand Down
Loading
Loading