From 6ee5d448bedd6d548f0384dcc4f48409bfde71d9 Mon Sep 17 00:00:00 2001 From: Cyril Corbon Date: Wed, 24 Feb 2021 11:27:21 +0100 Subject: [PATCH] feat(ci): add helm lint --- .github/workflows/lint-helm.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/lint-helm.yml diff --git a/.github/workflows/lint-helm.yml b/.github/workflows/lint-helm.yml new file mode 100644 index 0000000..b44c1e9 --- /dev/null +++ b/.github/workflows/lint-helm.yml @@ -0,0 +1,21 @@ +name: "Lint: helm chart" +on: + push: + branches: + - '**' + paths: + - 'helm/**' + - '.github/workflows/lint-helm.yml' + workflow_dispatch: + +jobs: + helm3-lint-test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Run chart linting + uses: helm/chart-testing-action@v1.0.0 + with: + command: lint