Skip to content
play

GitHub Action

Diff Check

v1.0.0 Latest version

Diff Check

play

Diff Check

An Action which runs a command and fails if it changes anything

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Diff Check

uses: nickcharlton/diff-check@v1.0.0

Learn more about this action in nickcharlton/diff-check

Choose a version

diff-check

An Action which runs a command and fails if it changes anything.

It's ideal for catching situations where tools like Dependabot might not bump other dependencies, like with tools like Appraisal's gemfiles or native iOS dependencies (ios/Podfile.lock) when updating npm dependencies on React Native.

The results are reported with a failed action run, and presented in the job summary.

Example

Screenshot of the job summary

.github/workflows/diff-check.yml:

---
name: diff-check
on: [push]

jobs:
  demo:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: nickcharlton/diff-check@main
        with:
          command: echo "hello world" >> README.md