You've already forked reposilite-charts
All checks were successful
Generate README / generate-parameters (push) Successful in 10s
Helm / helm-lint (push) Successful in 11s
Helm / helm-unittest (push) Successful in 8s
Markdown linter / markdown-lint (push) Successful in 9s
Generate README / generate-parameters (pull_request) Successful in 9s
Markdown linter / markdown-link-checker (push) Successful in 30s
Helm / helm-lint (pull_request) Successful in 5s
Markdown linter / markdown-link-checker (pull_request) Successful in 10s
Helm / helm-unittest (pull_request) Successful in 18s
Markdown linter / markdown-lint (pull_request) Successful in 9s
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
name: Helm
|
|
|
|
on:
|
|
pull_request:
|
|
types: [ "opened", "reopened", "synchronize" ]
|
|
push:
|
|
branches:
|
|
- '**'
|
|
tags-ignore:
|
|
- '**'
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
helm-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6.0.1
|
|
- uses: azure/setup-helm@v4.3.1
|
|
with:
|
|
version: v4.0.4 # renovate: datasource=github-releases depName=helm/helm
|
|
- name: Lint helm files
|
|
run: |
|
|
helm lint --values values.yaml .
|
|
|
|
helm-unittest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6.0.1
|
|
- uses: azure/setup-helm@v4.3.1
|
|
with:
|
|
version: v4.0.4 # renovate: datasource=github-releases depName=helm/helm
|
|
- env:
|
|
HELM_UNITTEST_VERSION: v1.0.0 #renovate: datasource=github-releases depName=helm-unittest/helm-unittest
|
|
name: Install helm-unittest
|
|
run: helm plugin install --verify=false --version "${HELM_UNITTEST_VERSION}" https://github.com/helm-unittest/helm-unittest
|
|
- name: Execute helm unittests
|
|
run: helm unittest --strict --file 'unittests/**/*.yaml' .
|