-
Notifications
You must be signed in to change notification settings - Fork 0
PUBLISHING
Daniel Arndt edited this page Mar 19, 2026
·
1 revision
This template supports a simple package publishing flow.
Preview publishing happens from main through GitHub Actions.
This is useful when you want to test installation before cutting a stable release.
Stable publishing is based on Git tags.
Example:
git tag v1.0.0
git push origin v1.0.0After the tag is pushed, the release workflow can:
- run validation again
- publish the package
- create release artifacts
npm install
npm run lint
npm run typecheck
npm run test:unit
npm run build- version is correct
- package name is correct
- scope is correct
-
.npmrcdocs are aligned - workflows point to the correct scope
- README install instructions are correct