From 7f9c943b8e3be3012e4920dc7b207e26d95e7f82 Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Sat, 7 Mar 2026 21:57:52 -0800 Subject: [PATCH] chore: add helm lint to pr tests --- .github/workflows/helm-lint.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/helm-lint.yml diff --git a/.github/workflows/helm-lint.yml b/.github/workflows/helm-lint.yml new file mode 100644 index 00000000..fced6547 --- /dev/null +++ b/.github/workflows/helm-lint.yml @@ -0,0 +1,17 @@ +name: Lint Helm Chart + +on: + pull_request: + +permissions: + contents: read + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Lint chart + run: helm lint chart/ --strict --set auth.accessKey=dummy --set auth.secretKey=dummy