From 221db2f0211332584f92cbd2973d64639d76bed2 Mon Sep 17 00:00:00 2001 From: Yonatan Kahana Date: Thu, 4 Mar 2021 23:43:34 +0200 Subject: [PATCH] Setup chart linter as github action Signed-off-by: Yonatan Kahana --- .github/workflows/helm-chart-lint.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/helm-chart-lint.yml diff --git a/.github/workflows/helm-chart-lint.yml b/.github/workflows/helm-chart-lint.yml new file mode 100644 index 00000000..949b1213 --- /dev/null +++ b/.github/workflows/helm-chart-lint.yml @@ -0,0 +1,18 @@ +name: Lint Helm Charts + +on: pull_request + +jobs: + lint-test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Set up chart-testing + uses: helm/chart-testing-action@v2.0.1 + + - name: Run chart-testing (lint) + run: ct lint