We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c21f82f commit 3a396caCopy full SHA for 3a396ca
.github/workflows/publish.yml
@@ -28,11 +28,21 @@ jobs:
28
with:
29
node-version: 20
30
31
+ - name: Ensure npm 11.5.1 or later for trusted publishing
32
+ run: |
33
+ npm install -g npm@latest
34
+
35
- name: Install Rust
36
uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # v1
37
38
toolchain: nightly
39
40
+ - name: Cache Rust dependencies
41
+ uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1 # v2.8.1
42
+ with:
43
+ workspaces: "packages/wasm-utxo"
44
+ cache-on-failure: true
45
46
- name: Install wasm tools
47
run: |
48
rustup component add rustfmt
0 commit comments