Skip to content

chore(deps): update all #165

chore(deps): update all

chore(deps): update all #165

Workflow file for this run

name: Lint and Test Charts
on:
pull_request:
paths:
- 'charts/uptime-kuma/templates/**'
- 'charts/uptime-kuma/Chart.yaml'
jobs:
lint-test:
runs-on: ubuntu-latest
strategy:
matrix:
k8s:
- v1.24.13
- v1.25.9
- v1.26.4
- v1.27.2
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.8.1
- uses: actions/setup-python@v5
with:
python-version: 3.7
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
- name: Run chart-testing (list-changed --target-branch main)
id: list-changed
run: |
changed=$(ct list-changed --target-branch main)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Run chart-testing (lint)
run: ct lint --config ".github/configs/ct.yaml" --target-branch main
- name: Create kind ${{ matrix.k8s }} cluster
uses: helm/kind-action@v1.10.0
if: steps.list-changed.outputs.changed == 'true'
with:
node_image: kindest/node:${{ matrix.k8s }}
- name: Run chart-testing (install)
run: ct install --config ".github/configs/ct.yaml" --target-branch main