test: Adds SDK unit tests and CI task #56
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: SDK CI | |
on: [ push, pull_request ] | |
jobs: | |
sdk-checks: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: sdk | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Run npm Install | |
run: npm install | |
- name: Unit Tests | |
run: npm run test | |