mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
aaf2e478cb
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
37 lines
788 B
YAML
37 lines
788 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
- run: corepack enable
|
|
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
|
|
with:
|
|
node-version: 20
|
|
cache: "pnpm"
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Build (stub)
|
|
run: pnpm dev:prepare
|
|
|
|
- name: Lint (docs)
|
|
run: pnpm lint:docs:fix
|
|
|
|
- uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c
|