mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 01:53:55 +00:00
4a64a64b9e
Signed-off-by: StepSecurity Bot <bot@stepsecurity.io> Co-authored-by: Daniel Roe <daniel@roe.dev>
34 lines
730 B
YAML
34 lines
730 B
YAML
name: autofix.ci # needed to securely identify the workflow
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "docs/**"
|
|
- ".github/workflows/docs.yml"
|
|
push:
|
|
branches:
|
|
- "renovate/**"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
- run: corepack enable
|
|
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
|
with:
|
|
node-version: 20
|
|
cache: "pnpm"
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Lint (docs)
|
|
run: pnpm lint:docs:fix
|
|
|
|
- uses: autofix-ci/action@8bc06253bec489732e5f9c52884c7cace15c0160
|