Skip to content

Commit

Permalink
Feat: Add github action to generate client
Browse files Browse the repository at this point in the history
  • Loading branch information
GBHU753 committed Jul 24, 2024
1 parent a5c5d8f commit a7bbd17
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/generate-api-client.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build API Client

on: [pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run yarn install
uses: borales/actions-yarn@v4
with:
cmd: install
- name: Generate API Client
run: yarn generate:api-client


0 comments on commit a7bbd17

Please sign in to comment.