From 4c3ac2958fcaaa90eddb60e92cd30eac50b5d2b5 Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Fri, 15 Mar 2024 16:20:53 +0000 Subject: [PATCH] chore: fix docker test workflows (#4566) # Description ## Problem\* Resolves ## Summary\* Docker tests have been broken for a while. This PR builds the types package so that the `noir_wasm` package can build. ## Additional Context ## Documentation\* Check one: - [x] No documentation needed. - [ ] Documentation included in this PR. - [ ] **[Exceptional Case]** Documentation to be submitted in a separate PR. # PR Checklist\* - [x] I have tested the changes locally. - [x] I have formatted the changes with [Prettier](https://prettier.io/) and/or `cargo fmt` on default settings. --- .github/scripts/noir-wasm-build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/noir-wasm-build.sh b/.github/scripts/noir-wasm-build.sh index f799387b6f6..48e3ad73769 100755 --- a/.github/scripts/noir-wasm-build.sh +++ b/.github/scripts/noir-wasm-build.sh @@ -2,4 +2,5 @@ set -eu .github/scripts/wasm-pack-install.sh +yarn workspace @noir-lang/types build yarn workspace @noir-lang/noir_wasm build