diff --git a/ci/build_and_test.sh b/ci/build_and_test.sh index 3d9f1cf..59628de 100755 --- a/ci/build_and_test.sh +++ b/ci/build_and_test.sh @@ -11,8 +11,8 @@ cargo -V # Build and test main crate if [ "$CFG_RELEASE_CHANNEL" == "nightly" ]; then - cargo build --locked --all-features + cargo build --locked --all-features --target=wasm32-unknown-unknown else - cargo build --locked + cargo build --locked --target=wasm32-unknown-unknown fi -cargo test --all-features \ No newline at end of file +cargo test --all-features --target=wasm32-unknown-unknown \ No newline at end of file