We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 750237d commit 6b2d10dCopy full SHA for 6b2d10d
.github/workflows/sdk-breaking-change-check.yml
@@ -142,7 +142,10 @@ jobs:
142
ls -la ./local-sdk-package/
143
144
echo "🔗 Installing local SDK package..."
145
- npm install ./local-sdk-package
+ if ! npm install ./local-sdk-package; then
146
+ echo "::error::Failed to install SDK package locally"
147
+ exit 1
148
+ fi
149
150
echo "🔍 Running TypeScript type checking for ${CLIENT_LABEL} client with SDK version: ${SDK_VERSION}"
151
echo "🎯 Type checking command: npm run test:types"
0 commit comments