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

Fix node compatibility test CI #9609

Merged
merged 1 commit into from
Aug 10, 2023
Merged
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
6 changes: 4 additions & 2 deletions .github/workflows/node-api-compatibility-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,10 @@ jobs:
if: ${{ !inputs.SKIP_JOB }}

# Ensure any changes to the generated client were checked in.
- run: |
cd ./ecosystem/typescript/sdk && pnpm generate-client -o /tmp/generated_client
- run: cd ./ecosystem/typescript/sdk && pnpm generate-client -o /tmp/generated_client
if: ${{ !inputs.SKIP_JOB }}

- run:
echo "If this step fails, run the following command locally to fix it:"
echo "cd ecosystem/typescript/sdk && pnpm generate-client"
git diff --no-index --ignore-space-at-eol --ignore-blank-lines ./ecosystem/typescript/sdk/src/generated/ /tmp/generated_client/
Expand Down