Moving yarn.lock to old version. This will allow open source contributors to keep developing and testing locally without any changes by simply running "./scripts/run_tests".
Updating "./scripts/run_tests_on_cloudbuild" script to use npm install. This will update yarn.lock file to fetch data from Airlock registry with building from cloud build trigger making sure we are still MOSS complaint.
Using bazel run @nodejs//:npm install using the correct registry that is set in .npmrc file unlike bazel run @nodejs//:yarn that ignores it.
Moving
yarn.lock
to old version. This will allow open source contributors to keep developing and testing locally without any changes by simply running "./scripts/run_tests".Updating "./scripts/run_tests_on_cloudbuild" script to use
npm install
. This will update yarn.lock file to fetch data from Airlock registry with building from cloud build trigger making sure we are still MOSS complaint. Usingbazel run @nodejs//:npm install
using the correct registry that is set in.npmrc
file unlikebazel run @nodejs//:yarn
that ignores it.