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-07-05 16:31:22 +00:00
|
|
|
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.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
|