fix: helm chart appVersion #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint Helm Chart | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "helm/**" | |
| - ".github/workflows/lint-helm.yml" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "helm/**" | |
| - ".github/workflows/lint-helm.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint-chart: | |
| name: Lint Helm Chart | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1 | |
| with: | |
| version: "latest" | |
| - name: Run Helm lint | |
| run: | | |
| helm lint ./helm | |
| helm lint ./helm -f ./helm/values-dev.yaml | |
| - name: Validate templates | |
| run: | | |
| helm template toolhive-cloud-ui ./helm --kube-version 1.28.0 --debug | |
| helm template toolhive-cloud-ui ./helm -f ./helm/values-dev.yaml --kube-version 1.28.0 --debug |