Skip to content

Lint and Test Charts #7

Lint and Test Charts

Lint and Test Charts #7

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 (list-changed)
run: ct list-changed --target-branch ${{ github.event.repository.default_branch }}
- name: Run chart-testing (lint)
run: ct lint --target-branch ${{ github.event.repository.default_branch }}