Documentation/Installation

Run ZemDomu checks in GitHub Actions

Use the GitHub Action to run the same semantic checks on pull requests and surface findings as CI annotations.

Setup steps

  1. Create .github/workflows/zemdomu.yml in the repository.
  2. Check out the repository and run the ZemDomu Action against the supported source patterns.
  3. Open a pull request and review any file annotations before merging.
name: ZemDomu Semantic Checks
on: [pull_request]

jobs:
  zemdomu:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: Zemdomu/ZemDomu-action@main
        with:
          files: |
            **/*.{html,jsx,tsx,vue}

What happens next

Push the workflow on a branch and confirm that a known fixture produces the expected annotation before making the check required.

If setup or a finding is unclear, ask in GitHub Discussions and include the rule code, relevant source, and command output without sharing secrets.