Nuxt/.github/workflows/docs.yml

35 lines
795 B
YAML
Raw Normal View History

2022-03-16 13:58:53 +00:00
name: Docs
on:
push:
paths:
- "docs/**"
- ".github/workflows/docs.yml"
2023-06-27 11:27:11 +00:00
- "*.md"
# autofix workflow will be triggered instead for PRs
2022-03-16 13:58:53 +00:00
branches:
- main
2023-04-20 08:47:03 +00:00
- "!v[0-9]*"
# Remove default permissions of GITHUB_TOKEN for security
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
permissions: {}
2022-03-16 13:58:53 +00:00
jobs:
lint-docs:
2023-03-28 10:27:28 +00:00
runs-on: ubuntu-latest
2022-03-16 13:58:53 +00:00
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- run: corepack enable
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
2022-03-16 13:58:53 +00:00
with:
node-version: 20
cache: "pnpm"
2022-03-16 13:58:53 +00:00
- name: Install dependencies
run: pnpm install
2022-03-16 13:58:53 +00:00
- name: Lint (docs)
run: pnpm lint:docs