mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 16:09:08 +00:00
a72217a375
Signed-off-by: Jeff Billimek <jeff@billimek.com>
28 lines
640 B
YAML
28 lines
640 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
|
|
|
|
- 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
|