Migrate UI pages to Lit web components in antrea-ui-components #2578
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: Documentation | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release-* | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| jobs: | |
| verify: | |
| name: Verify docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check-out code | |
| uses: actions/checkout@v7 | |
| - name: Checking whether autogenerated Helm chart documentation is up-to-date | |
| working-directory: build/charts/ | |
| run: | | |
| make helm-docs | |
| DIFF=$(git diff .) | |
| if [ -n "$DIFF" ]; then | |
| echo "The Helm chart documentation is out-of-date; please run 'make helm-docs' in 'build/charts/' and commit the changes" | |
| exit 1 | |
| fi |