ci: Only use helm kubeval if installed

This commit is contained in:
Anmol Sethi 2020-11-13 18:42:42 -05:00
parent a37572d92d
commit 79e8f3dfdb
No known key found for this signature in database
GPG Key ID: 8CEF1878FF10ADEB
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,9 @@ main() {
stylelint $(git ls-files "*.css")
tsc --noEmit
shellcheck -e SC2046,SC2164,SC2154,SC1091,SC1090,SC2002 $(git ls-files "*.sh")
helm kubeval ci/helm-chart
if command -v helm && helm kubeval --help > /dev/null; then
helm kubeval ci/helm-chart
fi
}
main "$@"