Skip to content

Commit

Permalink
ci: Add helm chart test (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
kesara authored Jan 14, 2024
1 parent 11e8d1a commit f34258f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/helm-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Helm Config Check

on:
push:
branches: [ main ]
paths:
- 'helm/**'
pull_request:
branches: [ main ]
paths:
- 'helm/**'

jobs:
helm-config-check:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Helm
uses: azure/setup-helm@v3

- name: Lint Helm Chart
run: |
helm lint ./helm

0 comments on commit f34258f

Please sign in to comment.