Skip to content
Closed
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
36 changes: 36 additions & 0 deletions .github/workflows/sdk-parity-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: SDK Parity Check

on:
pull_request:
paths:
- 'sdks/python/**'
- 'sdks/typescript/**'
- 'core/src/server/openapi.yaml'
- 'scripts/**'
push:
branches:
- main

jobs:
sdk-parity:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install Node Dependencies
run: npm install

- name: Run Parity Validator
run: npm run check:sdk-parity
Loading
Loading