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