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 2ec7e02 commit 061058dCopy full SHA for 061058d
1 file changed
.github/workflows/ci.yml
@@ -316,8 +316,12 @@ jobs:
316
registry-url: https://registry.npmjs.org/
317
318
- run: pnpm install
319
+ # Pin wasm-pack: npm 0.14.0+ downloads from drager/wasm-pack releases, which are
320
+ # currently missing on GitHub → "Error fetching release: 404". 0.13.1 uses rustwasm
321
+ # URLs that redirect to wasm-bindgen/wasm-pack assets. Local dev often uses
322
+ # `cargo install wasm-pack` (CONTRIBUTING) and avoids this path.
323
- if: matrix.settings.wasm
- run: pnpm install -w wasm-pack
324
+ run: pnpm install -w wasm-pack@0.13.1
325
326
- name: Lint check
327
if: matrix.settings.wasm
0 commit comments