
Reviewed-on: https://gitea.com/gitea/helm-chart/pulls/750 Co-authored-by: justusbunsi <sk.bunsenbrenner@gmail.com> Co-committed-by: justusbunsi <sk.bunsenbrenner@gmail.com>
17 lines
358 B
Makefile
17 lines
358 B
Makefile
.PHONY: prepare-environment
|
|
prepare-environment:
|
|
npm install
|
|
|
|
.PHONY: readme
|
|
readme: prepare-environment
|
|
npm run readme:parameters
|
|
npm run readme:lint
|
|
|
|
.PHONY: unittests
|
|
unittests:
|
|
helm unittest --strict -f 'unittests/helm/**/*.yaml' -f 'unittests/helm/values-conflicting-checks.yaml' ./
|
|
|
|
.PHONY: helm
|
|
update-helm-dependencies:
|
|
helm dependency update
|
|
|