We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d090073 + b4b3fcc commit 71151c9Copy full SHA for 71151c9
1 file changed
.github/workflows/pull-noir.yml
@@ -68,7 +68,13 @@ jobs:
68
cd ../..
69
# Update Cargo.lock if needed, but don't fail if transpiler no longer builds
70
cargo check --manifest-path avm-transpiler/Cargo.toml || true
71
- git add noir/noir-repo avm-transpiler/Cargo.lock
+ # Update yarn.lock to pick up any changes to noir's JS packages (versions
72
+ # or the file: hash of noir_js). --mode=update-lockfile skips linking and
73
+ # build scripts. Don't fail the workflow if yarn errors out -- a partial
74
+ # update is still useful for the resulting PR.
75
+ corepack enable
76
+ (cd yarn-project && yarn install --mode=update-lockfile) || true
77
+ git add noir/noir-repo avm-transpiler/Cargo.lock yarn-project/yarn.lock
78
79
- name: Check for existing PR
80
if: steps.noir_versions.outputs.update_needed == 'true'
0 commit comments