Skip to content

Fixes DJ-2470

Fixes DJ-2470 #73

name: Run SDK Tests
on:
pull_request:
types: [opened, edited, synchronize]
paths:
- 'packages/sdk/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
working-directory: packages/sdk
- name: Run tests
run: npm test
working-directory: packages/sdk