GitHub action for validating YAML against a schema
Find a file
dependabot[bot] 5282c13018
build(deps-dev): bump @types/node from 16.11.9 to 16.11.10 (#41)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 16.11.9 to 16.11.10.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-11-29 21:14:09 -08:00
.github fix: adding required arguments to workflow test 2021-10-01 00:27:13 -07:00
__tests__ fix: migrating to yaml validation action 2021-10-01 00:17:49 -07:00
dist fix: migrating to yaml validation action 2021-10-01 00:17:49 -07:00
src fix: migrating to yaml validation action 2021-10-01 00:17:49 -07:00
.eslintignore Initial commit 2021-09-30 21:58:11 -07: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 Initial commit 2021-09-30 21:58:11 -07: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 fix: migrating to yaml validation action 2021-10-01 00:17:49 -07: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 build(deps-dev): bump @types/node from 16.11.9 to 16.11.10 (#41) 2021-11-29 21:14:09 -08:00
README.md fix: more detailed readme 2021-10-01 00:42:24 -07:00
tsconfig.json Initial commit 2021-09-30 21:58:11 -07:00
yarn.lock build(deps-dev): bump @types/node from 16.11.9 to 16.11.10 (#41) 2021-11-29 21:14:09 -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"]
    }
  }
}