free runner disk space before docker build #9
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
name: Lint Helm charts | |
on: | |
push: | |
paths: | |
- "charts/**" | |
workflow_dispatch: | |
env: | |
HELM_VERSION: 3.11.2 | |
jobs: | |
lint-helm-charts: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Setup Helm | |
uses: mamezou-tech/[email protected] | |
with: | |
helm-version: "v${{ env.HELM_VERSION }}" | |
- name: Lint Helm Charts | |
run: | | |
helm lint charts/* | |
working-directory: ${{ github.workspace }} |