This repository was archived by the owner on Sep 26, 2025. It is now read-only.
chore(deps): pin dependencies #253
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: Test Helm charts | |
| on: | |
| pull_request: | |
| env: | |
| CHART_PATH: charts/docker-mailserver | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1 | |
| with: | |
| version: v3.17.0 | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | |
| with: | |
| python-version: '3.x' | |
| check-latest: true | |
| - uses: helm/chart-testing-action@0d28d3144d3a25ea2cc349d6e59901c4ff469b3b # v2.7.0 | |
| - name: Install chart dependencies | |
| run: | | |
| cd "$CHART_PATH" | |
| helm dependency build | |
| - name: Lint chart | |
| run: | | |
| cd "$CHART_PATH" | |
| helm lint . | |
| # - name: Create kind cluster | |
| # if: steps.list-changed.outputs.changed == 'true' | |
| # uses: helm/kind-action@v1.12.0 | |
| # - name: Run chart-testing (install) | |
| # if: steps.list-changed.outputs.changed == 'true' | |
| # run: ct install --target-branch ${{ github.event.repository.default_branch }} |