2020-01-10 15:52:38 +00:00
|
|
|
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
|
2020-04-29 22:35:13 +00:00
|
|
|
uses: helm/chart-testing-action@v1.0.0-rc.2
|
2020-01-10 15:52:38 +00:00
|
|
|
with:
|
2020-01-10 18:57:02 +00:00
|
|
|
command: lint
|
2020-01-10 15:52:38 +00:00
|
|
|
|
|
|
|
- name: Create kind cluster
|
2020-04-29 22:35:13 +00:00
|
|
|
uses: helm/kind-action@v1.0.0-rc.1
|
2020-01-10 15:52:38 +00:00
|
|
|
with:
|
|
|
|
install_local_path_provisioner: true
|
|
|
|
if: steps.lint.outputs.changed == 'true'
|
|
|
|
|
|
|
|
- name: Run chart-testing (install)
|
2020-04-29 22:35:13 +00:00
|
|
|
uses: helm/chart-testing-action@v1.0.0-rc.2
|
2020-01-10 15:52:38 +00:00
|
|
|
with:
|
|
|
|
command: install
|