Skip to content

Node spec transformer #38

Node spec transformer

Node spec transformer #38

Workflow file for this run

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