2024-09-02 21:03:47 +00:00
|
|
|
name: docs
|
2022-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
2022-10-17 10:10:05 +00:00
|
|
|
- "docs/**"
|
|
|
|
- ".github/workflows/docs.yml"
|
2023-06-27 11:27:11 +00:00
|
|
|
- "*.md"
|
2023-04-04 13:39:10 +00:00
|
|
|
# autofix workflow will be triggered instead for PRs
|
2022-03-16 13:58:53 +00:00
|
|
|
branches:
|
|
|
|
- main
|
2024-06-19 17:16:04 +00:00
|
|
|
- 3.x
|
2023-04-20 08:47:03 +00:00
|
|
|
- "!v[0-9]*"
|
2023-04-04 13:39:10 +00:00
|
|
|
|
|
|
|
# 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:
|
2024-06-13 12:37:54 +00:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2022-10-17 10:10:05 +00:00
|
|
|
- run: corepack enable
|
2024-09-19 15:35:29 +00:00
|
|
|
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
|
2022-03-16 13:58:53 +00:00
|
|
|
with:
|
2023-09-11 22:46:22 +00:00
|
|
|
node-version: 20
|
2022-10-17 10:10:05 +00:00
|
|
|
cache: "pnpm"
|
2022-03-16 13:58:53 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2022-10-17 10:10:05 +00:00
|
|
|
run: pnpm install
|
2022-03-16 13:58:53 +00:00
|
|
|
|
2024-07-03 22:21:19 +00:00
|
|
|
- name: Build (stub)
|
|
|
|
run: pnpm dev:prepare
|
|
|
|
|
2022-03-16 13:58:53 +00:00
|
|
|
- name: Lint (docs)
|
2022-10-17 10:10:05 +00:00
|
|
|
run: pnpm lint:docs
|
2024-02-15 10:07:39 +00:00
|
|
|
|
|
|
|
- name: Build Nuxt
|
|
|
|
run: pnpm build
|
|
|
|
|
|
|
|
- name: Typecheck (docs)
|
|
|
|
run: pnpm typecheck:docs
|