I'm reporting this here for awareness. Please check your CI pipelines for any issues.<p>TLDR:<p>Fixing the issue with globstar paths (`**/*`) not working when running an npm script:<p>`npm` uses `sh` by default on Linux when running a script with `npm run`. The thing is, if you are using globstar paths in your script, like `node --test src/**/*.test.js`, paths that are more than one-directory-level deep won't be expanded!<p>This is not an issue with Node.js or npm per say, but with how `sh` works by default. The thing is, this isn't the behavior that most people _expecting_ when setting up their npm scripts.<p>The link in this submission includes a description of this "pitfall", a resolution for Linux, and some other notes.<p>I strongly recommend checking your important repositories and CI pipelines for any issues, like tests getting skipped or assets not getting bundled (since their globstar paths are not being picked up by `sh`). Basically just check for any `package.json` that has `**/*` in it. You may also want to check that all your other scripts are being run with bash (with the `shopt globstar` setting set to `on` -- or just use `zsh`).<p>Sorry for the drama -- but I just _KNOW_ that this is being overlooked all over the place.