2023-04-04 13:39:10 +00:00
|
|
|
name: autofix.ci # needed to securely identify the workflow
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- "docs/**"
|
|
|
|
- ".github/workflows/docs.yml"
|
2023-05-02 20:11:13 +00:00
|
|
|
push:
|
2023-05-01 12:27:07 +00:00
|
|
|
branches:
|
|
|
|
- "renovate/**"
|
2023-04-04 13:39:10 +00:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-06-09 16:01:23 +00:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2023-04-04 13:39:10 +00:00
|
|
|
- run: corepack enable
|
2023-06-02 17:14:21 +00:00
|
|
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
2023-04-04 13:39:10 +00:00
|
|
|
with:
|
2023-04-24 21:24:38 +00:00
|
|
|
node-version: 20
|
2023-04-04 13:39:10 +00:00
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
|
|
|
|
|
|
|
- name: Lint (docs)
|
|
|
|
run: pnpm lint:docs:fix
|
2023-04-04 14:13:28 +00:00
|
|
|
|
|
|
|
- uses: autofix-ci/action@8bc06253bec489732e5f9c52884c7cace15c0160
|