charts/.github/workflows/lint-test.yaml
Jeff Billimek edb74accf5 manually passing charts dirs to lint command
Signed-off-by: Jeff Billimek <jeff@billimek.com>
2020-01-10 13:42:50 -05:00

28 lines
655 B
YAML

name: Lint and Test Charts
on: pull_request
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Run chart-testing (lint)
id: lint
uses: helm/chart-testing-action@v1.0.0-alpha.3
with:
command: lint --chart-dirs .
- name: Create kind cluster
uses: helm/kind-action@v1.0.0-alpha.3
with:
install_local_path_provisioner: true
if: steps.lint.outputs.changed == 'true'
- name: Run chart-testing (install)
uses: helm/chart-testing-action@v1.0.0-alpha.3
with:
command: install