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
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,15 @@ jobs:
run: cargo run --package bbuilder run examples/input_polygon.json --dry-run
- name: Test Ethereum example
run: cargo run --package bbuilder run examples/input_ethereum.json --dry-run

test-wasm-build:
name: Test WASM build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
- name: Build catalog for WASM
run: cargo build --target wasm32-unknown-unknown -p catalog
49 changes: 1 addition & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ reqwest = { version = "0.12", default-features = false }
jsonrpsee = { version = "0.24", features = ["server", "ws-client", "http-client", "macros"] }
tracing = "0.1"
tracing-subscriber = "0.3"
getrandom = { version = "0.2", features = ["js"] }
2 changes: 1 addition & 1 deletion crates/catalog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ serde_json.workspace = true
askama.workspace = true
template.workspace = true
cosmos-keys.workspace = true
reqwest = { version = "0.12", features = ["blocking"] }
getrandom.workspace = true
Loading