chore(deps): update helm/chart-testing-action action to v2.6.1 #125
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: Test chart changes | |
on: [push, pull_request] | |
jobs: | |
charttest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run chart-testing (lint) | |
id: lint | |
uses: helm/[email protected] | |
with: | |
command: lint | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Install helm chart | |
run: helm install varnish ./charts/varnish | |
- name: Remove helm chart | |
run: helm uninstall varnish |