Skip to content

Commit 856b85c

Browse files
committed
feat(ci): add helm lint
1 parent dcc2408 commit 856b85c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/lint-helm.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Lint: helm chart"
2+
on:
3+
push:
4+
branches:
5+
- '**'
6+
paths:
7+
- 'helm/**'
8+
workflow_dispatch:
9+
10+
jobs:
11+
helm3-lint-test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v2
16+
17+
- name: Run chart linting
18+
uses: helm/[email protected]
19+
with:
20+
command: lint

0 commit comments

Comments
 (0)