update readme for the github.io doc page #108
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Charts | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Install Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.4.0 | |
- name: Lint chart | |
run: helm lint charts/* --strict | |
# - name: Validate Kubernetes YAML files with Kubeval | |
# run: | | |
# helm plugin install https://github.com/instrumenta/helm-kubeval | |
# helm kubeval charts/* |