reduce k8s-stack chart size #577
Workflow file for this run
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
on: | |
push: | |
paths-ignore: | |
- 'packages/**' | |
- 'index.yaml' | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- 'packages/**' | |
- 'index.yaml' | |
- '**.md' | |
env: | |
HELM_VERSION: 3.11.3 | |
jobs: | |
lint-charts: | |
name: Lint Charts | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@master | |
- name: Install helm | |
uses: yokawasa/[email protected] | |
with: | |
setup-tools: | | |
helmv3 | |
helm: "${{ env.HELM_VERSION }}" | |
- name: Run lint | |
run: | | |
make lint | |
- name: Run template | |
run: | | |
make template |