Fix/hero avatar to costume #6
Workflow file for this run
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: Lint JSON Schemas | |
######################## | |
# Start the job on PRs # | |
######################## | |
on: | |
pull_request: | |
branches: [main] | |
types: [ready_for_review, reopened] | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Validate all json files using their own $schema properties | |
uses: cardinalby/schema-validator-action@v1 | |
with: | |
file: "schemas/*.schema.json" |