[OKX] Xlayer testnet Integration #1604
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js SDK check | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
paths: | |
- 'packages/core/**' | |
- 'packages/sdk/typescript/human-protocol-sdk/**' | |
workflow_dispatch: | |
jobs: | |
node-sdk-test: | |
name: Node.js SDK Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm install --global yarn && yarn --ignore-scripts | |
name: Install dependencies | |
- run: yarn build | |
name: Build core package | |
working-directory: ./packages/core | |
- run: yarn sdk:test | |
name: Run Node.js SDK test |