mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-22 22:16:46 +00:00
26 lines
502 B
YAML
26 lines
502 B
YAML
name: docs-lint
|
|
|
|
on:
|
|
push:
|
|
branches: [ "*" ]
|
|
paths:
|
|
- '.github/workflows/docs-lint.yml'
|
|
- 'docs/content/**'
|
|
pull_request:
|
|
branches: [ "*" ]
|
|
paths:
|
|
- '.github/workflows/docs-lint.yml'
|
|
- 'docs/content/**'
|
|
|
|
jobs:
|
|
spelling:
|
|
name: Spell Check
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- run: make docs-lint |