Update date-range-report-parameters.md #99
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: build eud on pull request | |
| on: | |
| pull_request: | |
| jobs: | |
| build-site: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v4 | |
| - name: Check status | |
| run: git status | |
| - name: Download docfx | |
| run: curl https://github.com/dotnet/docfx/releases/download/v2.77.0/docfx-win-x64-v2.77.0.zip -L -o ../docfx-win-x64-v2.77.0.zip | |
| - name: Expand docfx | |
| run: Expand-Archive ../docfx-win-x64-v2.77.0.zip -DestinationPath ../docfx | |
| - name: Build site with docfx | |
| run: ../docfx/docfx.exe build docfx.json -m _matomoContainerUrl="https://matomo.devexpress.com/js/container_kE7MWPi0.js" --warningsAsErrors |