Skip to content

Added editorial style guide checking. #2

Added editorial style guide checking.

Added editorial style guide checking. #2

Workflow file for this run

name: Style
on: [pull_request, push]
jobs:
lint:
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: Lint
run: npm run vale -- --source spec
- name: Check Style
uses: errata-ai/[email protected]
with:
version: 3.7.1
files: '["spec"]'