GitHub action for validating YAML against a schema
Find a file
2022-01-01 16:46:51 -08:00
.github feat: automated release w/ semantic-release 2022-01-01 16:46:47 -08:00
dist chore: Repository cleanup and re-structure 2021-12-24 14:13:55 -08:00
src chore: Repository cleanup and re-structure 2021-12-24 14:13:55 -08:00
.eslintignore chore: Repository cleanup and re-structure 2021-12-24 14:13:55 -08:00
.eslintrc.json fix: migrating to yaml validation action 2021-10-01 00:17:49 -07:00
.gitattributes fix: migrating to yaml validation action 2021-10-01 00:17:49 -07:00
.gitignore chore: Repository cleanup and re-structure 2021-12-24 14:13:55 -08:00
.prettierignore Initial commit 2021-09-30 21:58:11 -07:00
.prettierrc.json Initial commit 2021-09-30 21:58:11 -07:00
action.yml fix: adding branding to action.yml 2021-10-01 00:30:23 -07:00
CODEOWNERS chore: Add dependabot permissions for dep management and set frequency to monthly 2022-01-01 16:31:28 -08:00
jest.config.js Initial commit 2021-09-30 21:58:11 -07:00
LICENSE Initial commit 2021-09-30 21:58:11 -07:00
package.json Merge branch 'main' of https://github.com/brittonhayes/validate-yaml 2022-01-01 16:46:51 -08:00
README.md fix: more detailed readme 2021-10-01 00:42:24 -07:00
tsconfig.json chore: Repository cleanup and re-structure 2021-12-24 14:13:55 -08:00
yarn.lock Merge branch 'main' into dependabot/npm_and_yarn/eslint-plugin-jest-25.3.2 2022-01-01 16:32:32 -08:00

Validate YAML

Github action to validate yaml files against a JSON schema

Usage

Validate your YAML files against a JSON structure by providing a schema path and a list of files.

- name: Validate YAML
  uses: brittonhayes/validate-yaml
  with:
    schemaPath: 'schema.json'
    files: |
      example/foo.yaml      

Example JSON Schema

{
  "test": {
    "structure": {
      "myValue": "string",
      "myValue2": "string"
    }
  }
}

Example Valid YAML for this schema

---
test:
  structure:
    myValue: '1'
    myValue2: '2'

More Complex Schema

  • Use ? to indicate an optional field
  • Specify the preferred type with values like "string" or "number"
  • Replicate deeply nested structures in JSON to represent expected YAML
{
  "structure": {
    "school": {
      "description?": "string",
      "code": "number",
      "principal": {
        "name": "string"
      },
      "classRooms": [
        {
          "name": "string",
          "id": "number",
          "location?": {
            "floor": "string",
            "building": "string"
          }
        }
      ],
      "teachers": ["string"]
    }
  }
}