mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
37 lines
608 B
YAML
37 lines
608 B
YAML
name: Docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- next
|
|
paths:
|
|
- docs/**
|
|
- .github/workflows/docs.yml
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- docs/**
|
|
- .github/workflows/docs.yml
|
|
|
|
concurrency:
|
|
group: docs-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
spellcheck:
|
|
name: Check Spelling
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Prepare
|
|
uses: ./.github/actions/prepare
|
|
with:
|
|
build: false
|
|
|
|
- name: Lint
|
|
run: pnpm --filter docs spellcheck
|