Skip to content

Added support for using a certificate and key, fixed /_plugins/_security/api/nodesdn. #376

Added support for using a certificate and key, fixed /_plugins/_security/api/nodesdn.

Added support for using a certificate and key, fixed /_plugins/_security/api/nodesdn. #376

Workflow file for this run

name: Style
on: [pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install Dependencies
run: npm ci
- name: Prepare for Vale (spec)
run: npm run style:prepare -- --source spec
- name: Prepare for Vale (test)
run: npm run style:prepare -- --source tests
- name: Check Style
uses: errata-ai/vale-action@v2.1.1
with:
version: 3.7.1
vale_flags: --ignore-syntax
files: '["spec", "tests"]'