feat: v2 subchart architecture for Lago Helm charts #21
This file contains hidden or 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: | |
| pull_request: | |
| paths: | |
| - "charts/lago-data-agent/**" | |
| name: Lint Lago Data Agent Chart | |
| # NOTE: lint-only. The agent image lives in private ECR | |
| # (201661579678.dkr.ecr.us-east-1.amazonaws.com/lago-data-agent), so the `ct install` | |
| # step used by the mcp-server workflow would ImagePullBackOff in a throwaway kind | |
| # cluster. Add an install job once registry pull creds are wired into CI. | |
| jobs: | |
| lint: | |
| 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.18.4 | |
| - name: Set up chart-testing | |
| uses: helm/chart-testing-action@v2.8.0 | |
| - name: Run chart-testing (list-changed) | |
| id: list-changed | |
| run: | | |
| changed=$(ct list-changed --config tools/ct.yaml) | |
| if [[ -n "$changed" ]]; then | |
| echo "changed=true" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Run chart-testing (lint) | |
| if: steps.list-changed.outputs.changed == 'true' | |
| run: ct lint --config tools/ct.yaml |