Skip to content

chore: remove gitattributes (avoid CRLF/LF churn) #251

chore: remove gitattributes (avoid CRLF/LF churn)

chore: remove gitattributes (avoid CRLF/LF churn) #251

Workflow file for this run

name: Validate Schemas
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Validate schemas
run: npm run validate:schemas
- name: Validate examples
run: npm run validate:examples