Skip to content

Merge pull request #5 from zazuko/blueprint #37

Merge pull request #5 from zazuko/blueprint

Merge pull request #5 from zazuko/blueprint #37

Workflow file for this run

name: Lint Charts
on:
push:
jobs:
lint:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Helm
uses: azure/setup-helm@v4
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Install Helm dependencies
run: |
# Iterate over all charts in the zazuko directory
for chart in zazuko/*; do
echo "- ${chart}"
helm dependency update "${chart}"
echo ""
done
- name: Lint Helm Charts
run: |
helm lint zazuko/*