Skip to content

Merge pull request #65 from jmesnil/eap8_GA_images #168

Merge pull request #65 from jmesnil/eap8_GA_images

Merge pull request #65 from jmesnil/eap8_GA_images #168

Workflow file for this run

# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler
name: File Validation
on: [push, pull_request]
jobs:
validate-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate schema and examples
uses: stefanprodan/kube-tools@v1
with:
command: |
shopt -s globstar
echo "Check JSON schema"
cat charts/eap8/values.schema.json | jq > /dev/null
echo "Check Yaml Examples"
shopt -s globstar
yq eval-all 'true' examples/**/*.yaml > /dev/null