From 3df83465dd29e0c9bc63b59bd7cbcc73f79b65ff Mon Sep 17 00:00:00 2001 From: Toshit <45221816+r58Playz@users.noreply.github.com> Date: Sat, 23 Mar 2024 10:18:18 -0700 Subject: [PATCH] Install wasm-bindgen-cli in CI --- .github/workflows/test_client.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test_client.yml b/.github/workflows/test_client.yml index 784c9c5..7ddffc8 100644 --- a/.github/workflows/test_client.yml +++ b/.github/workflows/test_client.yml @@ -21,5 +21,7 @@ jobs: toolchain: nightly targets: wasm32-unknown-unknown components: rust-src + - name: Install wasm-bindgen-cli + run: cargo install wasm-bindgen-cli - name: Test run: bash -c "cd client; exec bash test.sh"