Research-Stack/2-Search-Space/search/stract/scripts/ci/check

11 lines
273 B
Bash
Executable file
Vendored

#!/bin/bash
set -e
cargo check
cargo check --no-default-features
cargo check --all-features
cargo check --features "dev"
cargo clippy -- -D warnings
cd crates/client-wasm && wasm-pack build --target web && cd -
cd frontend && npm install && npm run check && npm run lint