
GPG feature has breaking changes Co-authored-by: robv89r <robv8r@noreply.gitea.io> Co-authored-by: justusbunsi <justusbunsi@noreply.gitea.io> Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Reviewed-on: https://codeberg.org/forgejo-contrib/forgejo-helm/pulls/47
12 lines
244 B
Makefile
12 lines
244 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 --helm3 --strict -f 'unittests/**/*.yaml' ./
|