helm-actions/Makefile
Markus Pesch 7f868a0a27 chore(ci): add shellcheck (#7)
Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/7
Reviewed-by: justusbunsi <justusbunsi@noreply.gitea.com>
Co-authored-by: Markus Pesch <markus.pesch@cryptic.systems>
Co-committed-by: Markus Pesch <markus.pesch@cryptic.systems>
2025-04-03 17:52:36 +00:00

22 lines
461 B
Makefile

SHELL := /usr/bin/env bash -O globstar
.PHONY: prepare-environment
prepare-environment:
pnpm install
.PHONY: readme
readme: prepare-environment
pnpm run readme:parameters
pnpm run readme:lint
.PHONY: unittests-helm
unittests-helm:
helm unittest --strict -f 'unittests/helm/**/*.yaml' -f 'unittests/helm/values-conflicting-checks.yaml' ./
.PHONY: helm
update-helm-dependencies:
helm dependency update
.PHONY: yamllint
yamllint:
yamllint -c .yamllint .