fix rustup command
Test and Build / test-and-build (push) Successful in 39s

This commit is contained in:
Jay
2025-08-22 15:23:15 -04:00
parent 30a47148c9
commit f0485b08f4
+5 -3
View File
@@ -27,15 +27,17 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Install dependencies
run: npm install
# Install rust toolchain
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -- -y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
export PATH=/root/.cargo/bin:$PATH
rustc --version
cargo --version
npm install -g wasm-pack
wasm-pack --version
# Install app dependencies
# - name: Install app dependencies
# run: npm install