Skip to content

build(deps-dev): Bump vite from 4.5.3 to 4.5.5 in /website #2247

build(deps-dev): Bump vite from 4.5.3 to 4.5.5 in /website

build(deps-dev): Bump vite from 4.5.3 to 4.5.5 in /website #2247

name: Verify CLI Documentation
on: [push, pull_request]
jobs:
build:
name: Verify CLI Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.5
- name: Run gen doc
run: |
set -e
make gendoc
output=$(git status -s)
if [ -z "${output}" ]; then
exit 0
fi
echo 'We wish to maintain a clean documentation. Please run the command `go run ./go/main.go gen doc` on your branch, commit and push again.'
echo 'Running `go run ./go/main.go gen doc` on this CI test yields with the following changes:'
echo "$output"
exit 1