diff --git a/Makefile b/Makefile index 15782fa34..3810dfc7e 100644 --- a/Makefile +++ b/Makefile @@ -124,6 +124,9 @@ ci-lint: mdlint: find docs/ -path docs/vendor -prune -false -o -name '*.md' | xargs $(MDL) -s docs/mdl-style.rb +helm-lint: + helm lint --strict deployment/node-feature-discovery/ + test: $(GO_CMD) test ./cmd/... ./pkg/... diff --git a/scripts/test-infra/verify.sh b/scripts/test-infra/verify.sh index b4a14e426..356ba7554 100755 --- a/scripts/test-infra/verify.sh +++ b/scripts/test-infra/verify.sh @@ -4,9 +4,12 @@ curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.36.0 export PATH=$PATH:$(go env GOPATH)/bin +curl -sfL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash -s -- --version v3.5.2 + # Run verify steps make gofmt-verify make ci-lint +make helm-lint # Check that repo is clean if ! git diff --quiet; then