Skip to content

Added test chart.

Added test chart. #5

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 ${{ github.event.repository.default_branch }}
# if: steps.list-changed.outputs.changed == 'true'