feat(export): customizable export templates with live preview (epic #28) #26
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| dotnet: | |
| runs-on: windows-2025 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - run: dotnet restore Reva.slnx | |
| - run: dotnet format Reva.slnx --verify-no-changes | |
| - run: dotnet build Reva.slnx --no-restore | |
| - run: dotnet test Reva.slnx --no-build | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - run: python -m unittest discover tools/docling-worker/tests | |
| - shell: pwsh | |
| run: ./tests/package-smoke.ps1 | |
| e2e: | |
| runs-on: windows-2025 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - run: dotnet build Reva.slnx | |
| - run: dotnet build tests/Reva.E2E/Reva.E2E.csproj | |
| - shell: pwsh | |
| name: Install Playwright browser | |
| run: tests/Reva.E2E/bin/Debug/net10.0/playwright.ps1 install chromium | |
| - run: dotnet test tests/Reva.E2E/Reva.E2E.csproj --no-build |