File tree Expand file tree Collapse file tree 5 files changed +23
-5
lines changed Expand file tree Collapse file tree 5 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 88env :
99 CARGO_TERM_COLOR : always
1010 UDEPS_VERSION : 0.1.50
11+ NODE_VERSION : 20
1112
1213jobs :
1314 All :
5960 - name : Check for unused dependencies
6061 run : cargo +nightly udeps --all-targets
6162
63+ React :
64+ runs-on : ubuntu-latest
65+ steps :
66+ - name : Checkout repository
67+ uses : actions/checkout@v4
68+ - name : Setup Node.js
69+ uses : actions/setup-node@v4
70+ with :
71+ node-version : ${{ env.NODE_VERSION }}
72+ cache : ' npm'
73+ cache-dependency-path : explorer/package-lock.json
74+ - name : Install dependencies
75+ run : cd explorer && npm ci
76+ - name : Test compilation
77+ run : cd explorer && CI=true npm run build
78+
6279 WASM :
6380 runs-on : ubuntu-latest
6481 steps :
7895 - name : Install wasm-pack
7996 run : cargo install wasm-pack
8097 - name : Pack types
81- run : wasm-pack build types --release --target web
98+ run : wasm-pack build types --release --target web
Original file line number Diff line number Diff line change 88
99* [ chain] ( ./chain/README.md ) : A minimal blockchain built with the [ Commonware Library] ( https://github.com/commonwarexyz/monorepo ) .
1010* [ client] ( ./client/README.md ) : Client for interacting with ` alto ` .
11- * [ inspector] ( ./inspector/README.md ) : Monitor ` alto ` activity.
11+ * [ explorer] ( ./explorer/README.md ) : Visualize ` alto ` activity.
12+ * [ inspector] ( ./inspector/README.md ) : Inspect ` alto ` activity.
1213* [ types] ( ./types/README.md ) : Common types used throughout ` alto ` .
1314
1415## Licensing
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version = "0.0.3"
44publish = true
55edition = " 2021"
66license = " MIT OR Apache-2.0"
7- description = " Monitor alto activity."
7+ description = " Inspect alto activity."
88readme = " README.md"
99homepage = " https://alto.commonware.xyz"
1010repository = " https://github.com/commonwarexyz/alto/tree/main/inspector"
Original file line number Diff line number Diff line change 33[ ![ Crates.io] ( https://img.shields.io/crates/v/alto-inspector.svg )] ( https://crates.io/crates/alto-inspector )
44[ ![ Docs.rs] ( https://docs.rs/alto-inspector/badge.svg )] ( https://docs.rs/alto-inspector )
55
6- Monitor ` alto ` activity.
6+ Inspect ` alto ` activity.
77
88## Status
99
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ mod utils;
1717#[ tokio:: main]
1818async fn main ( ) {
1919 let matches = Command :: new ( "inspector" )
20- . about ( "Monitor alto activity." )
20+ . about ( "Inspect alto activity." )
2121 . arg (
2222 Arg :: new ( "verbose" )
2323 . short ( 'v' )
You can’t perform that action at this time.
0 commit comments