Merge pull request #293 from JonikUl/update-translations #170
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs | |
on: | |
push: | |
paths: | |
- "docs/**" | |
- ".github/workflows/docs.yml" | |
- "*.md" | |
# autofix workflow will be triggered instead for PRs | |
branches: | |
- main | |
- 3.x | |
- "!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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: corepack enable | |
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | |
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 | |
- name: Build Nuxt | |
run: pnpm build | |
- name: Typecheck (docs) | |
run: pnpm typecheck:docs |