Skip to content

Library functions that are used in the silver searcher including some from the pcre library #5980

Library functions that are used in the silver searcher including some from the pcre library

Library functions that are used in the silver searcher including some from the pcre library #5980

Workflow file for this run

name: options
on:
push:
pull_request:
jobs:
validate-conf:
strategy:
matrix:
node-version:
- 14
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install ajv-cli
run: npm install -g ajv-cli
- name: Migrate schema # https://github.com/ajv-validator/ajv-cli/issues/199
run: ajv migrate -s src/util/options.schema.json
- name: Validate conf
run: ajv validate -s src/util/options.schema.json -d "conf/**/*.json"
- name: Validate incremental tests
run: ajv validate -s src/util/options.schema.json -d "tests/incremental/*/*.json"