OPSEXP-2257 Dynamic matrix for docker compose testing (#993) #951
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: Pre-commit (Helm) | |
on: | |
pull_request: | |
branches: | |
- master | |
- release/** | |
paths: | |
- helm/** | |
- test/postman/helm/** | |
- .github/workflows/pre-commit-helm.yml | |
- "**.md" | |
- .pre-commit-config.yaml | |
push: | |
branches: | |
- master | |
- release/** | |
env: | |
# https://pre-commit.com/#temporarily-disabling-hooks | |
SKIP: docker-compose-check | |
jobs: | |
pre_commit: | |
name: Run pre-commit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | |
- name: Add dependency chart repos | |
run: | | |
helm repo add alfresco-helm-charts https://alfresco.github.io/alfresco-helm-charts/ | |
helm repo add activiti-cloud-helm-charts https://activiti.github.io/activiti-cloud-helm-charts | |
- uses: pre-commit/[email protected] |