feat: update CRDs and appVersion to version snapshot-feat-non-enterpr… #73
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: CI | |
| on: | |
| push: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - &checkout | |
| name: Checkout | |
| uses: actions/checkout@v6 | |
| - &setup_helm | |
| name: Set up Helm | |
| uses: azure/setup-helm@v5 | |
| - name: Lint | |
| run: helm lint . | |
| unittest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - *checkout | |
| - *setup_helm | |
| - name: Install helm-unittest | |
| run: helm plugin install https://github.com/helm-unittest/helm-unittest.git --verify=false | |
| - name: Test | |
| run: helm unittest . | |
| schema: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - *checkout | |
| - *setup_helm | |
| - name: Install helm-values-schema-json plugin | |
| run: helm plugin install https://github.com/losisin/helm-values-schema-json.git --verify=false | |
| - name: Generate values schema json | |
| uses: losisin/helm-values-schema-json-action@v3 | |
| with: | |
| values: values.yaml | |
| output: values.schema.json | |
| fail-on-diff: true |