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
Currently, this command exits successfully, even if missing keys are found. It would be helpful to have an optional flag that forces the command to return a non-zero exit code when any missing keys are found. This would make it much easier to use the command in CI pipelines to automatically catch missing keys and fail the job. We tried to work around this by getting output from stderr, but the command currently outputs all logs, including messages like === Keys Audit === and ✅ all good!, to stderr.
As a result, we have to rely on matching specific strings like 🔴 Missing using regex, which is fragile and can be broken if the log format changes.