Skip to content

custom rule to require a description for every schema #36

custom rule to require a description for every schema

custom rule to require a description for every schema #36

Workflow file for this run

name: CI
on:
pull_request:
branches:
- 'main'
jobs:
pullRequestBuild:
name: Pull Request Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 23.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Compile
run: npm run ci:compile
- name: Check Code Style
run: npm run ci:style
- name: Perform Linting
run: npm run ci:lint
- name: Run Tests
run: npm run ci:test
branchBuild:
runs-on: ubuntu-latest
name: Branch Build
strategy:
matrix:
node-version: [20.x, 22.x, 23.x]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Compile
run: npm run ci:compile
- name: Check Code Style
run: npm run ci:style
- name: Perform Linting
run: npm run ci:lint
- name: Run Tests
run: npm run ci:test