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 1ccaeae
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/command_doc_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,20 @@ 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-
- name: Install dependencies
run: npm ci
- name: prettier
run: npm run prettier:fix
- name: Check no uncommited changes
run: git diff --exit-code

0 comments on commit 1ccaeae

Please sign in to comment.