MCPcopy Index your code
hub / github.com/EndBug/version-check

github.com/EndBug/version-check @v3.0.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v3.0.0 ↗ · + Follow
1,724 symbols 3,516 edges 3 files 0 documented · 0%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Version check

All Contributors

You can use this GitHub action to check whether your npm package version has been updated: this can be extremely helpful if you want to automate your release process.

The main difference between this action and many others out there is that this doesn't do a specific task (it doesn't publish to registries, create tags or releases, send notifications, ...) but instead gives you an output that you can use in other steps of your workflow as you prefer: this way you don't have to deal with stuff you don't care about ;)

This action is heavily inspired by npm-publish-action by pascal: if you only care about publishing your package to npm automatically, this is the simplest solution :thumbsup:

Usage

GitHub Workflow

You have to set up a step like this in your workflow (this assumes you've already checked out your repo and set up Node):

- id: check # This will be the reference for getting the outputs.
  uses: EndBug/version-check@v3 # You can choose the version/branch you prefer.

  with:
    # All these parameters are optional,
    # check their descriptions to see if you need them.

    # Whether to search in every commit's diff.
    # This is useful if you often do change the version without saying it in the
    # commit message. If you always include the semver of the new version in your
    # commit message when you bump versions then you can omit this.
    # Default: false
    diff-search: true

    # You can use this to indicate a custom path to your `package.json`. If you keep
    # your package file in the root directory (which is the usual approach) you can
    # omit this.
    # Default: package.json
    file-name: ./your/own/dir/someName.json

    # You can put your bearer GitHub token here. This is needed only when running
    # the action on private repostiories, if you're running it on a public repo you
    # can omit this.
    # If you need to set this, you can use the built-in `GITHUB_TOKEN` secret that
    # GitHub generates for your repo's actions: you can find more info about it here:
    # https://help.github.com/en/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions#github_token-secret
    # Default: ''
    token: ${{ secrets.GITHUB_TOKEN }}

    # You can use this to make the action use an URL to get the package file,
    # instead of using the one in your repo.
    # Please note that the action will expect the version from that package file to
    # be the same as the one that has been added in the commit: if you want to
    # change this behavior take a look at the `assume-same-version` option.
    # You can also set this to '::before', and the action will use the file from
    # before the push event.
    # Default: ''
    file-url: https://unpkg.com/pkg/package.json

    # You can use this to make the action use the current version (either from the
    # local file or the provided URL, see the `file-url` option) as either the added
    # or deleted version.
    # Accepted values are 'new' (if you want that version to be the "added" one) and
    # 'old' (to make it the "deleted" one).
    # Default: ''
    assume-same-version: old

    # You can use this option to make the action check the local version against the
    # remote one (from the provided URL, see the `file-url` option).
    # Accepted values are 'localIsNew' (if you expect the local version to be newer
    # than the remote one) and `remoteIsNew`.
    # Please note that using the wrong value may make the action detect the change
    # but fail to identify the type.
    # Default: ''
    static-checking: localIsNew

    # If you are using an instance of GitHub Enterprise you can use this option to
    # change the location of your GitHub api url.
    # Default: 'https://api.github.com'
    github-api-url: https://git.contoso.com/api/v3

Now, when someone changes the version in package.json to 1.2.3 and pushes a commit with the message <WHATEVER> 1.2.3 (eg. Release 1.2.3 or Bump version to v1.2.3), output values are set (see Outputs below).

Please note that even if the action is built to be easier as possible to use, it is still subject to GitHub API's limits. That means that pushes and PRs that have a lot of commits may not show 100% of the commits. It is not something to worry about though, since the action has always worked in most of the cases ;)

Outputs

  • changed: either "true" or "false", indicates whether the version has changed.
  • type: if the version has changed, it tries to find the type of bump (e.g. "patch", "minor", ...). To see the full list of available types, please refer to the semver-diff docs
  • version: if the version has changed, it shows the version number (e.g. "1.0.2")
  • commit: if the version has changed, it shows the sha of the commit where the change has been found.

To access these outputs, you need to access the context of the step you previously set up: you can find more info about steps contexts here. If you set your step id to check you'll find the outputs at steps.check.outputs.OUTPUT_NAME: you can use these outputs as conditions for other steps. Here's an example:

- name: Check if version has been updated
  id: check
  uses: EndBug/version-check@v3

- name: Log when changed
  if: steps.check.outputs.changed == 'true'
  run: 'echo "Version change found in commit ${{ steps.check.outputs.commit }}! New version: ${{ steps.check.outputs.version }} (${{ steps.check.outputs.type }})"'

- name: Log when unchanged
  if: steps.check.outputs.changed == 'false'
  run: 'echo "No version change :/"'

Please keep in mind that when the static-checking option is used the commit output is not given.

Examples

Publishing automatically to both NPM & GitHub Package Registry

If you want to see how to publish automatically your package to both NPM & GPR, please see this example workflow ;) You can also find a more in-depth guide in this here.

Static-checking with your latest version on NPM

If you want to check whether the version has changed since your last published version on NPM, you can do it using file-url and static-checking:

  • file-url: you need to use something like a raw.githubusercontent.com or unpkg.com URL, an API that will give you a JSON response with your package file.
  • static-checking: you're expecting your last published version to be older than the one in your repo, so we'll use localIsNew
- id: check
  uses: EndBug/version-check@v3
  with:
    file-url: https://unpkg.com/your-package@latest/package.json
    static-checking: localIsNew

This step will have a true changed output every time our version is newer (there won't be any commit output).

Contributors ✨

Thanks goes to these wonderful people (emoji key):

Federico Grandi Federico Grandi 💻 📖 Sergey Zwezdin Sergey Zwezdin 🤔 Lars Kinn Ekroll Lars Kinn Ekroll 🐛 Humberto Humberto 💻 Heikki Mehtänen Heikki Mehtänen 💻 CJY CJY 🤔 Nicholas Nicholas 🤔
Alex Torres Alex Torres 💻 Adam Kudrna Adam Kudrna 🤔 📖 spinlud spinlud 🐛 JasonCubic JasonCubic 💻 Gerrit Birkeland Gerrit Birkeland 💻 Jan Pilzer Jan Pilzer 📖 Antoine Cadoret Antoine Cadoret 📖
Vladislav Vladislav 💻 SwabianCoder SwabianCoder 🐛 Zach Cardoza Zach Cardoza 🐛 Harel M Harel M 📖 Leandro Melo Leandro Melo 🚧 Médédé Raymond KPATCHAA Médédé Raymond KPATCHAA 🐛

Extension points exported contracts — how you extend this code

CommitResponse (Interface)
(no doc)
src/main.ts
LocalCommit (Interface)
(no doc)
src/main.ts
PackageObj (Interface)
(no doc)
src/main.ts
PartialCommitResponse (Interface)
(no doc)
src/main.ts

Core symbols most depended-on inside this repo

push
called by 160
lib/index.js
on
called by 127
lib/index.js
destroy
called by 111
lib/index.js
assertType
called by 82
lib/index.js
toString
called by 73
lib/index.js
get
called by 58
lib/index.js
slice
called by 50
lib/index.js
set
called by 49
lib/index.js

Shape

Method 823
Function 621
Class 276
Interface 4

Languages

TypeScript100%

Modules by API surface

lib/index.js1,697 symbols
src/main.ts27 symbols

For agents

$ claude mcp add version-check \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact