Skip to content

Add workflow for check and publish #14

Add workflow for check and publish

Add workflow for check and publish #14

Workflow file for this run

name: Lint Charts PR
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v3
- name: Run chart-testing
run: |
for file in ./examples/*.yaml; do
echo "Linting file: $file"
helm lint -f "$file"
done