🚚 release: diode helm chart #25
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: Helm - lint | |
on: | |
push: | |
branches: | |
- "!release" | |
paths: | |
- "charts/**" | |
pull_request: | |
paths: | |
- "charts/**" | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
helm-lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
defaults: | |
run: | |
working-directory: charts | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Helm | |
uses: azure/[email protected] | |
- name: Update helm dependencies | |
run: helm dependency update diode | |
- name: Run helm lint | |
run: helm lint diode |