v2 / .github / workflows / module_docs_lint.yml
19 lines · 17 sloc · 394 bytes · a48e8e28ecbbdb19e5632354f2eae61863fed90b
Raw
1name: Code CI vlib modules
2
3on:
4 push:
5 paths:
6 - '**/cmd/tools/vdoc/theme/**'
7 pull_request:
8 paths:
9 - '**/cmd/tools/vdoc/theme/**'
10
11jobs:
12 lint-module-docs:
13 runs-on: ubuntu-latest
14 steps:
15 - uses: actions/checkout@v6
16 - name: Check Formatting
17 uses: creyD/[email protected]
18 with:
19 prettier_options: --check cmd/tools/vdoc/theme
20