shellcheck-action icon indicating copy to clipboard operation
shellcheck-action copied to clipboard

A GitHub Action to run the shell linter ShellCheck

Results 7 shellcheck-action issues
Sort by recently updated
recently updated
newest added

Add action parameters that allow to include and exclude specific files to be checked/ignored.

enhancement

Could this include the `--external-sources` argument? It would be great to have a [`with` property](https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepswith) in which all possible arguments supported by `shellcheck` could be configured: ```yaml - name: Shellcheck...

enhancement

Currently, this defaults to v0.8.0 of ShellCheck. This should be more flexible, and users should be able to select a version, or just use `latest` (which should be the default)....

enhancement

With `shellcheck --format=json1`, output looking something like ```json { comments: [ { "file": "filename", "line": lineNumber, "column": columnNumber, "level": "severitylevel", "code": errorCode, "message": "warning message" }, ... ] } ```...

enhancement

Before curling ShellCheck from GitHub, we can check to see if it's in the cache.

infrastructure