Skip to content

Create SECURITY.md

Create SECURITY.md #2

Workflow file for this run

name: Schema validation tests
on:
push:
branches: [ gh-pages, schema-1.0 ]
pull_request:
branches: [ gh-pages ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Test schemas
run: npm run test-schema