Skip to content

Commit 6ee5d44

Browse files
committed
feat(ci): add helm lint
1 parent dcc2408 commit 6ee5d44

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/lint-helm.yml

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

0 commit comments

Comments
 (0)