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-09-23 15:10:28 +00:00
|
|
|
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
2023-04-04 13:39:10 +00:00
|
|
|
- run: corepack enable
|
2023-08-18 15:05:38 +00:00
|
|
|
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.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-10-09 14:05:25 +00:00
|
|
|
- uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc
|