chore(event-bingo): update images to sha-f17837f #37
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: Validate Manifests | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Kustomize | |
| uses: imranismail/setup-kustomize@v2 | |
| with: | |
| kustomize-version: "5.4.2" | |
| - name: Validate Infrastructure Manifests | |
| run: | | |
| for dir in infrastructure/overlays/*; do | |
| if [ -d "$dir" ]; then | |
| echo "Validating $dir..." | |
| kustomize build "$dir" > /dev/null | |
| fi | |
| done | |
| - name: Validate Service Manifests | |
| run: | | |
| for dir in services/*/overlays/*; do | |
| if [ -d "$dir" ]; then | |
| echo "Validating $dir..." | |
| kustomize build "$dir" > /dev/null | |
| fi | |
| done |