charts/.github/workflows/lint-test.yaml
Jeff Billimek 83bb21d987 updating actions versions
Signed-off-by: Jeff Billimek <jeff@billimek.com>
2020-08-27 11:31:27 -04:00

33 lines
740 B
YAML

name: Lint and Test Charts
on: pull_request
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch history
run: git fetch --prune --unshallow
- name: Run chart-testing (lint)
id: lint
uses: helm/chart-testing-action@v1.0.0
with:
command: lint
config: ct.yaml
- name: Create kind cluster
uses: helm/kind-action@v1.0.0
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
with:
command: install
config: ct.yaml