* Use stable rust * Add From impls * Revert to nightly * Improve dev env & CI setup * Update lock * Add thiserror * Add diff error * Fix tests * Lint * Rename NumberOrString * Format * Fix lint script
30 lines
666 B
Bash
Executable file
30 lines
666 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
which cargo-insta || cargo install cargo-insta
|
|
which wasm-pack || cargo install wasm-pack
|
|
|
|
node_version=$(node --version | cut -d'.' -f1 | tr -d 'v')
|
|
if [ "$node_version" != "22" ]; then
|
|
echo "Error: Node.js version 22 is required, but found version $node_version"
|
|
exit 1
|
|
fi
|
|
|
|
wasm-pack build --target web --features wasm,console_error_panic_hook
|
|
cargo test --verbose --features serde -- --include-ignored
|
|
|
|
cargo test
|
|
cargo test --features serde
|
|
cargo test --features wasm
|
|
cargo test --features all
|
|
|
|
wasm-pack test --node --features wasm,console_error_panic_hook
|
|
|
|
cd reconcile-js
|
|
npm ci
|
|
npm run build
|
|
npm run test
|
|
cd -
|
|
|
|
echo "Success!"
|