Skip to content

Dev Notes

Jason edited this page Aug 24, 2021 · 4 revisions
  • To publish a new version to NPM:
    1. Update package.json's "version": "x.x.x" following SemVer.
    2. Run npm install
    3. git add . && git commit -m 'chore: bump version to x.x.x' && git push origin main
  • Keep .github/workflows/ci.yml updated to run tests using the two most recent versions of NodeJS: node: [14, 16]
  • INPUT_TOKEN within ci.yml is a workaround for a bug in Github Actions
Clone this wiki locally