-
Notifications
You must be signed in to change notification settings - Fork 44
Dev Notes
Jason edited this page Aug 24, 2021
·
4 revisions
- To publish a new version to NPM:
- Update
package.json
's"version": "x.x.x"
following SemVer. - Run
npm install
git add . && git commit -m 'chore: bump version to x.x.x' && git push origin main
- Update
- Keep
.github/workflows/ci.yml
updated to run tests using the two most recent versions of NodeJS:node: [14, 16]
-
INPUT_TOKEN
withinci.yml
is a workaround for a bug in Github Actions