diff --git a/.github/workflows/validate-js.yml b/.github/workflows/validate-js.yml index 2c7aa77..da97573 100644 --- a/.github/workflows/validate-js.yml +++ b/.github/workflows/validate-js.yml @@ -86,3 +86,9 @@ jobs: - name: Run ESLint run: yarn lint -f @jamesacarr/github-actions + + - name: Run ESLint with auto-fix + run: yarn lint --fix + + - name: Verify no files have changed after auto-fix + run: git diff --exit-code HEAD