Library functions that are used in the silver searcher
including some from the pcre
library
#5980
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |