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-10-18 09:06:36 +00:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-04-04 13:39:10 +00:00
|
|
|
- run: corepack enable
|
2023-12-18 18:06:22 +00:00
|
|
|
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
|
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-11-15 17:25:26 +00:00
|
|
|
- uses: autofix-ci/action@bee19d72e71787c12ca0f29de72f2833e437e4c9
|