forgejo-helm/.woodpecker/lint.yml

38 lines
959 B
YAML
Raw Permalink Normal View History

2023-01-03 14:25:32 +00:00
platform: linux/amd64
when:
branch:
exclude:
2023-01-03 16:16:46 +00:00
- pages
2023-01-03 14:25:32 +00:00
pipeline:
2023-01-03 22:26:25 +00:00
deps:
2023-01-03 14:25:32 +00:00
image: alpine:3.17
pull: true
commands:
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
2023-01-03 22:26:25 +00:00
- helm repo add bitnami https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
2023-01-03 22:23:46 +00:00
- helm dependency build
2023-01-03 22:26:25 +00:00
helm-lint:
image: alpine:3.17
pull: true
commands:
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
2023-01-03 14:25:32 +00:00
- helm lint
helm-template:
image: alpine:3.17
pull: true
commands:
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
- helm template --debug gitea-helm .
verify-readme:
image: alpine:3.17
pull: true
commands:
- apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing make npm git
- make readme
- git diff --exit-code --name-only README.md