chore(deps): update helm release common to v2.26.0 #101
Workflow file for this run
This file contains 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 Charts | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
paths: | |
- "sickhub/**" | |
- ".github/workflows/**" | |
jobs: | |
test: | |
name: Test Helm Chart | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct list-changed --chart-dirs sickhub --target-branch ${{ github.event.repository.default_branch }}) | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
fi | |
- name: Run chart-testing (lint) | |
run: | | |
helm repo add bitnami https://charts.bitnami.com/bitnami | |
ct lint --chart-dirs sickhub --all | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
if: github.ref == 'refs/heads/master' || steps.list-changed.outputs.changed == 'true' | |
- name: Run chart-testing (install) | |
id: chart-install | |
run: ct install --chart-dirs sickhub --remote origin --all | |
if: github.ref == 'refs/heads/master' || steps.list-changed.outputs.changed == 'true' |