2022-03-16 13:58:53 +00:00
|
|
|
name: Docs
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
2022-10-17 10:10:05 +00:00
|
|
|
- "docs/**"
|
|
|
|
- ".github/workflows/docs.yml"
|
2023-06-27 11:27:11 +00:00
|
|
|
- "*.md"
|
2023-04-04 13:39:10 +00:00
|
|
|
# autofix workflow will be triggered instead for PRs
|
2022-03-16 13:58:53 +00:00
|
|
|
branches:
|
|
|
|
- main
|
2023-04-20 08:47:03 +00:00
|
|
|
- "!v[0-9]*"
|
2023-04-04 13:39:10 +00:00
|
|
|
|
|
|
|
# Remove default permissions of GITHUB_TOKEN for security
|
|
|
|
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
|
|
|
|
permissions: {}
|
2022-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint-docs:
|
2023-03-28 10:27:28 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
steps:
|
2023-06-09 16:01:23 +00:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2022-10-17 10:10:05 +00:00
|
|
|
- run: corepack enable
|
2023-07-05 16:31:22 +00:00
|
|
|
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
|
2022-03-16 13:58:53 +00:00
|
|
|
with:
|
2023-04-24 21:24:38 +00:00
|
|
|
node-version: 20
|
2022-10-17 10:10:05 +00:00
|
|
|
cache: "pnpm"
|
2022-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2022-10-17 10:10:05 +00:00
|
|
|
run: pnpm install
|
2022-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
- name: Lint (docs)
|
2022-10-17 10:10:05 +00:00
|
|
|
run: pnpm lint:docs
|