-
Notifications
You must be signed in to change notification settings - Fork 1
LTS-3295: add supply-chain hardened .npmrc #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| # Supply-chain hardening directives (SC-12282 / LTS-3295) | ||
| # See: https://browserstack.atlassian.net/wiki/spaces/ENG/pages/6091571922/Supply+Chain+Security+Enhancements+Tech+Spec | ||
| # | ||
| # access=restricted is intentionally OMITTED — this is a public, customer-facing | ||
| # sample repository, not a published private package. | ||
| # | ||
| # ignore-scripts=true is now safe: these tests run remotely on BrowserStack, and | ||
| # Edge/Gecko are not supported on our platform, so the local driver-binary | ||
| # postinstalls (edgedriver/geckodriver) are not needed. browserstack-node-sdk is | ||
| # pinned to the latest release (1.61.0) so no update-postinstall is needed either. | ||
| # | ||
| # engine-strict=true enforces the package.json `engines.node` floor (>=18), which | ||
| # matches our runner pod and what @wdio/cli 9 already requires. Customers on EOL | ||
| # Node (<18) get a clear upgrade message instead of obscure failures. | ||
|
|
||
| strict-ssl=true | ||
| save-exact=true | ||
| audit-level=high | ||
| legacy-peer-deps=false | ||
| ignore-scripts=true | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tested with this configuration to initiate tests with cli and ui?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes — validated end-to-end on the real prod BLU pod via the CLI (
The dashboard-UI-initiated flow uploads the same package + |
||
| engine-strict=true | ||
|
github-advanced-security[bot] marked this conversation as resolved.
Fixed
|
||
| min-release-age=7 | ||
Uh oh!
There was an error while loading. Please reload this page.