Add workflow to render all helm charts and verify it does not cause a git diff

This commit is contained in:
Finn 2024-09-10 09:44:22 -07:00
parent 0749802038
commit c593120e46

View file

@ -0,0 +1,14 @@
on:
push:
paths:
- helm/*
jobs:
render-helm:
runs-on: docker
container:
image: library/alpine
steps:
- run: apk add --no-cache nodejs git helm kubectl
- uses: actions/checkout@v5
- run: helm/render-all.sh
- run: git diff --exit-code