Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

speakeasy: Add Studio AI schema to input list #25

Merged
merged 4 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/jest_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,19 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install Yarn
run: corepack enable && corepack prepare yarn@stable --activate

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm ci

- name: Build the project
run: yarn run build
run: npm run build

- name: Run tests
run: yarn run test
run: npm test

- name: Upload Test Results
uses: actions/upload-artifact@v2
if: failure()
uses: actions/upload-artifact@v3
if: failure()
with:
name: test-results
path: ./tests/reports/
if-no-files-found: error
if-no-files-found: error
1 change: 1 addition & 0 deletions .speakeasy/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ sources:
livepeer-studio-api:
inputs:
- location: https://raw.githubusercontent.com/livepeer/studio/master/packages/api/src/schema/api-schema.yaml
- location: https://raw.githubusercontent.com/livepeer/studio/master/packages/api/src/schema/ai-api-schema.yaml
registry:
location: registry.speakeasyapi.dev/livepeer/livepeer-studio/livepeer-studio-api
targets:
Expand Down
Loading