Skip to content

Lint and Test Charts #6

Lint and Test Charts

Lint and Test Charts #6

Workflow file for this run

name: Lint and Test Charts
on:
push:
paths:
- "charts/**"
workflow_dispatch:
jobs:
lint-chart:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up chart-testing
uses: helm/chart-testing-action@v2
- name: Run chart-testing (lint)
run: ct lint --target-branch main
# if: steps.list-changed.outputs.changed == 'true'