Update Helm release ingress-nginx to v4.12.0 #173
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: Pull Request | |
on: | |
pull_request: | |
branches: | |
- master | |
env: | |
COMPONENT_NAME: ingress-nginx | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
command: | |
- lint_jsonnet | |
- lint_yaml | |
- lint_adoc | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ${{ matrix.command }} | |
run: make ${{ matrix.command }} | |
editorconfig: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: snow-actions/[email protected] | |
with: | |
args: 'check' | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{ env.COMPONENT_NAME }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ env.COMPONENT_NAME }} | |
- name: Compile component | |
run: make test | |
golden: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{ env.COMPONENT_NAME }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ env.COMPONENT_NAME }} | |
- name: Golden diff | |
run: make golden-diff |