From f34258f975a7396f30c0deefd737db7c5dc8624f Mon Sep 17 00:00:00 2001 From: Kesara Rathnayake Date: Mon, 15 Jan 2024 12:52:16 +1300 Subject: [PATCH] ci: Add helm chart test (#446) --- .github/workflows/helm-checks.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/helm-checks.yml diff --git a/.github/workflows/helm-checks.yml b/.github/workflows/helm-checks.yml new file mode 100644 index 0000000..5267f71 --- /dev/null +++ b/.github/workflows/helm-checks.yml @@ -0,0 +1,26 @@ +name: Helm Config Check + +on: + push: + branches: [ main ] + paths: + - 'helm/**' + pull_request: + branches: [ main ] + paths: + - 'helm/**' + +jobs: + helm-config-check: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Helm + uses: azure/setup-helm@v3 + + - name: Lint Helm Chart + run: | + helm lint ./helm