chore(deps): update helm/kind-action action to v1.13.0 #164
Workflow file for this run
This file contains hidden or 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: Integration Test | |
| # yamllint disable-line rule:truthy | |
| on: | |
| push: | |
| branches: ["main"] | |
| paths: | |
| - .github/workflows/integration-test.yml | |
| - charts/** | |
| - tests/** | |
| pull_request: | |
| paths: | |
| - .github/workflows/integration-test.yml | |
| - charts/** | |
| - tests/** | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| list-tests: | |
| name: List tests | |
| runs-on: ubuntu-latest | |
| outputs: | |
| tests: ${{ steps.list_tests.outputs.tests }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: 'false' | |
| - name: List tests | |
| id: list_tests | |
| working-directory: tests/integration | |
| run: | | |
| tests=$(find . -name test-plan.yaml -exec dirname {} \; | sed -e "s/^\.\///g") | |
| echo "Tests: ${tests}" | |
| echo "tests=$(echo "${tests}" | jq --raw-input --slurp --compact-output 'split("\n") | map(select(. != ""))')" >> "${GITHUB_OUTPUT}" | |
| run-tests: | |
| name: Integration Test | |
| needs: list-tests | |
| runs-on: ubuntu-latest | |
| if: needs.list-tests.outputs.tests != '[]' | |
| strategy: | |
| matrix: | |
| test: ${{ fromJson(needs.list-tests.outputs.tests) }} | |
| fail-fast: false | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: 'false' | |
| path: source | |
| - name: Checkout code | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: 'false' | |
| repository: grafana/helm-chart-toolbox | |
| path: helm-chart-toolbox | |
| - name: Install Flux CLI | |
| uses: fluxcd/flux2/action@4a15fa6a023259353ef750acf1c98fe88407d4d0 # v2.7.2 | |
| - name: Install Kind CLI | |
| uses: helm/kind-action@92086f6be054225fa813e0a4b13787fc9088faab # v1.13.0 | |
| with: | |
| install_only: true | |
| - name: Install Minikube CLI | |
| uses: medyagh/setup-minikube@e3c7f79eb1e997eabccc536a6cf318a2b0fe19d9 # v0.0.20 | |
| with: | |
| start: false | |
| - name: Setup Flux CLI | |
| uses: fluxcd/flux2/action@4a15fa6a023259353ef750acf1c98fe88407d4d0 # v2.7.2 | |
| - name: Run test | |
| run: helm-chart-toolbox/tools/helm-test/helm-test "${TEST_DIRECTORY}" | |
| env: | |
| TEST_DIRECTORY: "source/tests/integration/${{ matrix.test }}" | |
| DELETE_CLUSTER: true |