@plasius/learning 0.2.23 → 0.2.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -426,18 +426,27 @@ npm run build
|
|
|
426
426
|
npm run pack:check
|
|
427
427
|
```
|
|
428
428
|
|
|
429
|
-
Node.js 24 is required. Public pull-request code is validated
|
|
430
|
-
GitHub-hosted Linux
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
`
|
|
429
|
+
Node.js 24 is required. Public pull-request and main-branch code is validated
|
|
430
|
+
on isolated GitHub-hosted Linux runners with read-only workflow permissions.
|
|
431
|
+
Final npm
|
|
432
|
+
publication runs only on a GitHub-hosted runner from the protected `production`
|
|
433
|
+
environment so npm can validate its short-lived OIDC identity and record
|
|
434
|
+
provenance; it has no long-lived npm write-token fallback. Release coverage and
|
|
435
|
+
the CycloneDX SBOM are retained even when an external coverage service is
|
|
436
|
+
unavailable. Release tags and GitHub Releases use a current-repository GitHub
|
|
437
|
+
App token with explicit Contents and Workflows write permissions. Publication
|
|
438
|
+
checks out the verified current release-branch HEAD, including the workflow
|
|
439
|
+
tooling used by a `bump=none` recovery.
|
|
440
|
+
<!-- BEGIN PLASIUS RELEASE INTEGRITY -->
|
|
441
|
+
## Release integrity
|
|
442
|
+
|
|
443
|
+
Production package publication runs only from `.github/workflows/cd.yml` on
|
|
444
|
+
protected `main`. The job verifies that the prepared commit is still the
|
|
445
|
+
current main commit and has an exact successful `ci.yml` push result before it
|
|
446
|
+
mutates release state. Public package CI runs on GitHub-hosted capacity so it
|
|
447
|
+
cannot execute on company-managed runners. npm publication runs on
|
|
448
|
+
GitHub-hosted Node.js 24 with
|
|
449
|
+
npm 11.5.1 or newer, uses the protected `production` environment and
|
|
450
|
+
short-lived npm OIDC with provenance, and has no long-lived npm write-token
|
|
451
|
+
fallback. Rollback disables CD; it never rewrites published package history.
|
|
452
|
+
<!-- END PLASIUS RELEASE INTEGRITY -->
|
package/package.json
CHANGED