Skip to content

Commit

Permalink
💚 Add helm-lint
Browse files Browse the repository at this point in the history
Signed-off-by: Rintaro Okamura <rintaro.okamura@gmail.com>
  • Loading branch information
rinx committed May 14, 2020
1 parent f7dc424 commit 1373996
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/helm-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: 'Run Helm lint'
on:
pull_request:
paths:
- 'charts'

jobs:
helm-lint:
name: helm lint
runs-on: ubuntu-latest
container:
image: vdaas/vald-ci-container:nightly
steps:
- name: Check out code.
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Helm version
run: |
helm version
- name: Run lint for charts/vald
run: |
helm lint charts/vald
- name: Run lint for charts/vald-helm-operator
run: |
helm lint charts/vald-helm-operator

0 comments on commit 1373996

Please sign in to comment.