From 98177ec860583b7e05cd90654405e3817607ee0d Mon Sep 17 00:00:00 2001 From: Tommy Date: Sat, 24 Feb 2024 20:46:30 +0100 Subject: [PATCH] feat(helm): add helm validator to ci --- .github/workflows/validate-helm-charts.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/validate-helm-charts.yml diff --git a/.github/workflows/validate-helm-charts.yml b/.github/workflows/validate-helm-charts.yml new file mode 100644 index 0000000..3dc60b3 --- /dev/null +++ b/.github/workflows/validate-helm-charts.yml @@ -0,0 +1,19 @@ +name: Validate Helm Charts + +on: + push: + branches-ignore: + - main + +jobs: + kubeconform: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + + - name: Generate and validate releases + uses: shivjm/helm-kubeconform-action@v0.2.0 + with: + additionalSchemaPaths: | + schemas/{{ .ResourceKind }}.json + chartsDirectory: "charts"