diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1211381..f1bd22e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,8 +29,11 @@ jobs: # Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest') version: 'latest' - - name: Build + - name: Dependencies run: | - ls - wasm-pack --version - wasm-pack build --target web \ No newline at end of file + apt update -y && apt-get install clang -y + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y --profile=minimal --target=wasm32-unknown-unknown + npm install -g wasm-pack + + - name: Build + run: ls \ No newline at end of file