mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 10:42:08 +00:00
58755a6c88
This PR adds a CI step to ensure the docs are properly formatted. Release Notes: - N/A
24 lines
458 B
YAML
24 lines
458 B
YAML
name: Docs
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "docs/**"
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
check_formatting:
|
|
name: "Check formatting"
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
|
|
|
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3
|
|
with:
|
|
version: 9
|
|
|
|
- run: pnpm dlx prettier . --check
|
|
working-directory: ./docs
|