Added lint & updated maintainer #1
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: "Lint Helm Charts" | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "charts/**" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "charts/**" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
- name: Lint Helm charts | |
run: helm lint charts/* |