Skip to content

chore(deps): update dependency webrick to v1.8.2 #211

chore(deps): update dependency webrick to v1.8.2

chore(deps): update dependency webrick to v1.8.2 #211

---
name: Validate yaml files
on:
- push
- pull_request
permissions:
contents: read
pull-requests: write # enable write permissions for pull request comments
jobs:
validate-yaml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: get go-yq
run: |
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O yq
chmod +x yq
- name: extract front matter
run: |
find ./_projects -name "*.md" -exec bash -c "./yq --front-matter=extract {} > {}.yaml " \;
- name: json-yaml-validate
id: json-yaml-validate
uses: GrantBirki/[email protected]
with:
comment: true
use_gitignore: false
json_schema: ./validation/schema.json
json_exclude_regex: ""
exclude_file: ./validation/exclude
base_dir: "./_projects"
yaml_as_json: true