You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run actionlint through null-ls in vim and was wondering why I can't see all the findings I get on the command line. After going through the code I figured it seems to be a problem with actionlint and not the integration in vim. When I run
I get: []. Presumably linting from stdin does the linting for the file in isolation. It would be better though if the linting would happen in the context of all the workflows in the directory. Especially when provided with a filename: -stdin-filename .github/workflows/push-to-main.yml Not sure what else -stdin-filename would be for if not that.
Version information:
$ actionlint -version
1.6.23
installed by downloading from release page
built with go1.19.4 compiler for darwin/arm64
The text was updated successfully, but these errors were encountered:
Since -stdin-filename assumes file name, not file path, currently actionlint does not use the argument to find the Git project directory. But it would be useful to find a Git project from the argument for some integrations like editor plugins.
I run actionlint through null-ls in vim and was wondering why I can't see all the findings I get on the command line. After going through the code I figured it seems to be a problem with actionlint and not the integration in vim. When I run
I get a bunch of findings:
But when I run:
I get:
[]
. Presumably linting from stdin does the linting for the file in isolation. It would be better though if the linting would happen in the context of all the workflows in the directory. Especially when provided with a filename:-stdin-filename .github/workflows/push-to-main.yml
Not sure what else-stdin-filename
would be for if not that.Version information:
The text was updated successfully, but these errors were encountered: