Give the Service default port (5984) a name so that it is not ambiguo… #186
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- '.github/workflows/chart-test.yaml' | |
- '.github/actions/**' | |
- 'couchdb/**' | |
permissions: | |
checks: write | |
contents: read | |
statuses: write | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
submodules: recursive | |
- name: Build Setup Helm | |
run: cd ./.github/actions/setup-helm && npm run-script build | |
- name: Set up Helm | |
uses: ./.github/actions/setup-helm | |
with: | |
version: v3.14.4 | |
- name: Set up chart-testing | |
uses: ./.github/actions/chart-testing-action | |
- name: Run chart-testing (lint all) | |
run: ct lint --target-branch main --all --chart-dirs . | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
submodules: recursive | |
- name: Build Setup Helm | |
run: cd ./.github/actions/setup-helm && npm run-script build | |
- name: Set up Helm | |
uses: ./.github/actions/setup-helm | |
with: | |
version: v3.14.4 | |
id: install | |
- name: Set up chart-testing | |
uses: ./.github/actions/chart-testing-action | |
- name: Create kind cluster | |
uses: ./.github/actions/kind-action | |
- name: Run chart-testing (install all) | |
run: ct install --target-branch main --all --upgrade --chart-dirs . |