| 1 | name: Code CI vlib modules |
| 2 | |
| 3 | on: |
| 4 | push: |
| 5 | branches: |
| 6 | - master |
| 7 | paths: |
| 8 | - '**/cmd/tools/vdoc/theme/**' |
| 9 | pull_request: |
| 10 | paths: |
| 11 | - '**/cmd/tools/vdoc/theme/**' |
| 12 | |
| 13 | jobs: |
| 14 | lint-module-docs: |
| 15 | runs-on: ubuntu-latest |
| 16 | steps: |
| 17 | - uses: actions/checkout@v6 |
| 18 | - name: Check Formatting |
| 19 | uses: creyD/[email protected] |
| 20 | with: |
| 21 | prettier_options: --check cmd/tools/vdoc/theme |
| 22 |