Skip to content

Commit

Permalink
feat(ci): add helm lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cyril-corbon committed Feb 24, 2021
1 parent dcc2408 commit 6ee5d44
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/lint-helm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Lint: helm chart"
on:
push:
branches:
- '**'
paths:
- 'helm/**'
- '.github/workflows/lint-helm.yml'
workflow_dispatch:

jobs:
helm3-lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Run chart linting
uses: helm/[email protected]
with:
command: lint

0 comments on commit 6ee5d44

Please sign in to comment.