Skip to content

Commit

Permalink
ci: fix doc check
Browse files Browse the repository at this point in the history
  • Loading branch information
gotbadger committed Nov 17, 2023
1 parent d050d29 commit 35f588c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/command_doc_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,26 @@ jobs:
go-version: 1.21
- name: Generate command docs
run: go run ./scripts/gen-doc-yaml.go
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "16"
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
working-directory: ./docs
- name: Install dependencies
run: npm ci
working-directory: ./docs
working-directory: ./docs
- name: prettier
run: npm run prettier:fix
working-directory: ./docs
- name: Pick up any new files
run: git add .
- name: Check no uncommited changes
run: git diff --exit-code

0 comments on commit 35f588c

Please sign in to comment.