| 1 | name: Code CI vlib modules |
| 2 | |
| 3 | on: |
| 4 | push: |
| 5 | paths: |
| 6 | - '**/cmd/tools/vdoc/theme/**' |
| 7 | pull_request: |
| 8 | paths: |
| 9 | - '**/cmd/tools/vdoc/theme/**' |
| 10 | |
| 11 | jobs: |
| 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 |