2022-01-20 09:32:09 +01:00
|
|
|
name: Format + Docs Workflow
|
|
|
|
on:
|
|
|
|
push:
|
2022-01-21 18:19:56 +01:00
|
|
|
paths: ["docs/**", "**.md", "**.toml", "**.js", "**.json", "**.ts"]
|
2022-01-20 09:32:09 +01:00
|
|
|
pull_request:
|
2022-01-21 18:19:56 +01:00
|
|
|
paths: ["docs/**", "**.md", "**.toml", "**.js", "**.json", "**.ts"]
|
2022-01-20 09:32:09 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Run the dprint code formatter for documentation
|
|
|
|
dprint:
|
|
|
|
name: Dprint [Docs Formatter]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup | Checkout
|
2024-01-07 03:05:37 +01:00
|
|
|
uses: actions/checkout@v4
|
2022-01-20 09:32:09 +01:00
|
|
|
- name: Docs | Format
|
2023-02-20 03:51:14 +01:00
|
|
|
uses: dprint/check@v2.2
|
2022-01-21 17:26:13 +01:00
|
|
|
|
2022-06-15 23:30:30 +02:00
|
|
|
# Validate preset files
|
|
|
|
taplo:
|
|
|
|
name: Taplo [Preset schema validation]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup | Checkout
|
2024-01-07 03:05:37 +01:00
|
|
|
uses: actions/checkout@v4
|
2022-06-15 23:30:30 +02:00
|
|
|
- name: Install | Taplo
|
2024-02-01 15:07:00 +01:00
|
|
|
run: cargo install --debug --locked --version 0.9.0 taplo-cli
|
2022-06-15 23:30:30 +02:00
|
|
|
- name: Presets | Validate with schema
|
2024-03-24 08:03:55 +01:00
|
|
|
run: taplo lint --schema "file://${GITHUB_WORKSPACE}/.github/config-schema.json" docs/public/presets/toml/*.toml
|
2022-06-15 23:30:30 +02:00
|
|
|
|
2022-01-21 17:26:13 +01:00
|
|
|
# If this is not a Crowdin PR, block changes to translated documentation
|
|
|
|
block-crowdin:
|
|
|
|
name: Block Translated Changes
|
|
|
|
runs-on: ubuntu-latest
|
2022-01-21 18:19:56 +01:00
|
|
|
if: ${{ github.event_name == 'pull_request' }}
|
2022-01-21 17:26:13 +01:00
|
|
|
steps:
|
|
|
|
- name: Prevent File Change
|
2024-01-17 21:17:17 +01:00
|
|
|
uses: xalvarez/prevent-file-change-action@v1.6.0
|
2022-01-25 09:56:07 +01:00
|
|
|
if: ${{ github.event.pull_request.head.ref != 'i18n_master' }}
|
2022-01-21 17:26:13 +01:00
|
|
|
with:
|
|
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
pattern: docs/[a-z][a-z][a-z]?-[A-Z][A-Z]?/.*
|
2024-03-03 17:55:30 +01:00
|
|
|
|
|
|
|
# Vitepress build
|
|
|
|
vitepress:
|
|
|
|
name: Vitepress [Build]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup | Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Setup | Node
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: 20
|
|
|
|
cache: 'npm'
|
|
|
|
cache-dependency-path: docs/package-lock.json
|
|
|
|
|
|
|
|
- name: Setup | Install dependencies
|
|
|
|
run: npm install
|
|
|
|
working-directory: docs
|
|
|
|
|
|
|
|
- name: Build | Build docs site
|
|
|
|
run: npm run build
|
|
|
|
working-directory: docs
|