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:
|
2024-06-13 12:37:54 +00:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-04-04 13:39:10 +00:00
|
|
|
- run: corepack enable
|
2024-02-07 09:59:54 +00:00
|
|
|
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
|
2023-04-04 13:39:10 +00:00
|
|
|
with:
|
2023-09-11 22:46:22 +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
|
|
|
|
2023-12-23 14:22:22 +00:00
|
|
|
- uses: autofix-ci/action@ea32e3a12414e6d3183163c3424a7d7a8631ad84
|