chore(docs): apply artalk locale from html lang #196
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: Test Docs | |
on: | |
push: | |
branches: ["*", "!release/*", "!nightly"] | |
paths: ["docs/**"] | |
tags-ignore: ["v*"] | |
pull_request: | |
paths: ["docs/**"] | |
branches: ["*", "!release/*", "!nightly"] | |
jobs: | |
test_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.9.0 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build Docs | |
run: pnpm build:docs | |
- name: Lint Docs | |
run: pnpm eslint docs && pnpm prettier --check docs |