Skip to content

Commit 63bab10

Browse files
authored
Update workflow to sync wasm-bindgen (#63)
The version of wasm-bindgen-cli must match the version of the library - the library version needs to be updated via `cargo update` to match the version of wasm-bindgen-cli installed during the build.
1 parent b721955 commit 63bab10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/typescript-ci-patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
path: /jobs/test/steps/5
2121
value:
2222
name: Compile
23-
run: yarn run compile
23+
run: cargo update && yarn run compile
2424
# Coverage doesn't work for this repo
2525
- op: remove
2626
path: /jobs/test/steps/7

.github/workflows/typescript-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ jobs:
3737
- name: Install modules
3838
run: yarn
3939
- name: Compile
40-
run: yarn run compile
40+
run: cargo update && yarn run compile
4141
- name: Run tests
4242
run: yarn run test

0 commit comments

Comments
 (0)