Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI

on:
pull_request:
branches:
- main
paths:
- 'charts/**'

jobs:
lint-and-template:
permissions:
contents: read

runs-on: ubuntu-latest
steps:
Comment thread
camjay marked this conversation as resolved.
- name: Checkout
uses: actions/checkout@v4

- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.12.0

- name: Lint charts
run: |
for chart in charts/*/; do
echo "=== Linting ${chart} ==="
helm lint "${chart}"
done

- name: Template charts
run: |
for chart in charts/*/; do
echo "=== Templating ${chart} ==="
helm template test "${chart}"
done