Skip to content

Commit

Permalink
fix: add make generate to ci/cd flow
Browse files Browse the repository at this point in the history
  • Loading branch information
HJ-Fan committed Jul 24, 2024
1 parent fbfd68e commit d13225f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
with:
go-version: "1.22.1"

- name: Generate support files
run: make generate

- name: Format Golang
run: if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then exit 1; fi

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
with:
node-version: 20

- name: Generate support files
working-directory: ./
run: make generate

- name: Clean Install Node.js
run: npm ci

Expand Down

0 comments on commit d13225f

Please sign in to comment.