Bootstrapping differs between local builds using `npm install` in root folder and CI builds. Local builds execute [`lerna bootstrap --no-ci`](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/b9a13817b21f6be804479f24619c765b33ec0add/package.json#L25) CI builds execute [`lerna bootstrap --no-ci --hoist --nohoist='zone.js' --nohoist='mocha' --nohoist='ts-mocha'`](https://github.com/open-telemetry/opentelemetry-js-contrib/blob/b9a13817b21f6be804479f24619c765b33ec0add/.github/workflows/unit-test.yml#L144) I can't tell which variant is better/more correct but I think there should be no difference. Refs.: #900 (fixes an issue which happens in CI but not local)