chore(deps): update actions/checkout digest to a5ac7e5 #55
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 and Test Charts | |
on: pull_request | |
jobs: | |
lint-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4 | |
- name: Fetch history | |
run: git fetch --prune --unshallow | |
- name: Run chart-testing (lint) | |
id: lint | |
uses: helm/[email protected] | |
with: | |
command: lint | |
config: ct.yaml | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
if: steps.lint.outputs.changed == 'true' | |
- name: Run chart-testing (install) | |
uses: helm/[email protected] | |
with: | |
command: install | |
config: ct.yaml |