We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcc2408 commit 6ee5d44Copy full SHA for 6ee5d44
.github/workflows/lint-helm.yml
@@ -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