Files
Serge Logvinov 4402b31acc chore: bump deps
Update deps

Signed-off-by: Serge Logvinov <serge.logvinov@sinextra.dev>
2025-09-02 11:36:54 +07:00

28 lines
562 B
YAML

name: Helm chart check
on:
pull_request:
branches:
- main
paths:
- 'charts/**'
jobs:
helm-lint:
name: Helm chart check
timeout-minutes: 5
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Unshallow
run: git fetch --prune --unshallow
- name: Install chart-testing tools
uses: helm/chart-testing-action@v2.7.0
- name: Run helm chart linter
run: ct --config hack/ct.yml lint
- name: Run helm template
run: make helm-unit