chore: add version labels for all internal charts #924
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 and Test Charts | |
on: | |
pull_request: | |
paths: | |
- 'charts/**' | |
jobs: | |
helm-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up helm-docs | |
uses: envoy/[email protected] | |
with: | |
version: 1.11.0 | |
- name: Run helm-docs | |
run: helm-docs && git diff --exit-code | |
lint-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.12.2 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct --config ct.yaml list-changed) | |
if [[ -n "$changed" ]]; then | |
echo "::set-output name=changed::true" | |
fi | |
if [[ "$changed" == *"rollout-app"* ]]; then | |
echo "::set-output name=rollout::true" | |
fi | |
if [[ "$changed" == *"simple-workflow"* ]]; then | |
echo "::set-output name=simple-workflow::true" | |
fi | |
- name: Run chart-testing (lint) | |
run: ct --config ct.yaml lint | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
if: steps.list-changed.outputs.changed == 'true' | |
- name: Install Argo Rollouts Controller | |
if: steps.list-changed.outputs.rollout == 'true' | |
run: | | |
make -C charts/rollout-app install_rollouts | |
- name: Install Argo Workflow Controller | |
if: steps.list-changed.outputs.simple-workflow == 'true' | |
run: | | |
make -C charts/simple-workflow install_argo_workflow | |
- name: Install CRDs | |
if: steps.list-changed.outputs.changed == 'true' | |
run: make crds | |
- name: Wait | |
if: steps.list-changed.outputs.changed == 'true' | |
run: sleep 1 | |
- name: Run chart-testing (install) | |
run: ct --config ct.yaml install |