2024-03-26 21:11:55 +08:00
|
|
|
name: Lint Helm Charts
|
2023-08-23 05:55:56 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'nextcloud-aio-helm-chart/**'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint-helm:
|
2024-03-26 21:11:55 +08:00
|
|
|
runs-on: ubuntu-latest
|
2023-08-23 05:55:56 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-04 20:29:01 +08:00
|
|
|
uses: actions/checkout@v4
|
2023-08-23 05:55:56 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Install Helm
|
2024-04-12 20:49:43 +08:00
|
|
|
uses: azure/setup-helm@v4
|
2023-08-23 05:55:56 +08:00
|
|
|
with:
|
|
|
|
version: v3.11.1
|
|
|
|
|
2024-03-26 21:11:55 +08:00
|
|
|
- name: Lint charts
|
|
|
|
run: helm lint nextcloud-aio-helm-chart
|