Skip to content

Bump @types/react from 18.2.18 to 18.2.21 in /client/web/antrea-ui #168

Bump @types/react from 18.2.18 to 18.2.21 in /client/web/antrea-ui

Bump @types/react from 18.2.18 to 18.2.21 in /client/web/antrea-ui #168

Workflow file for this run

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@v3
- 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