Skip to content

revert(schema): refactor(schema)!: change http method POST -> GET for… #14

revert(schema): refactor(schema)!: change http method POST -> GET for…

revert(schema): refactor(schema)!: change http method POST -> GET for… #14

Workflow file for this run

#
# Flowmotion
# CI/CD Pipeline
# Schema
#
name: Flowmotion Pipeline CI/CD
on:
push:
paths:
- .github/workflows/schema.yaml
- "schema/**"
jobs:
schema:
name: "Validate JSON Schema"
runs-on: ubuntu-22.04
defaults:
run:
working-directory: schema
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.9.x
# cache npm dependencies
cache: npm
cache-dependency-path: schema/package-lock.json
- name: Install npm dependencies
run: npm ci
- name: Validate json schema
run: npx ajv compile -s "*.schema.json" --spec=draft2020 -c ajv-formats