Nuxt/.github/workflows/docs.yml
renovate[bot] 357ad9bd31
chore(deps): update actions/checkout action to v3.5.3 (main) (#21493)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-09 17:01:23 +01:00

34 lines
780 B
YAML

name: Docs
on:
push:
paths:
- "docs/**"
- ".github/workflows/docs.yml"
# autofix workflow will be triggered instead for PRs
branches:
- main
- "!v[0-9]*"
# Remove default permissions of GITHUB_TOKEN for security
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
permissions: {}
jobs:
lint-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- 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