Skip to content

improve documentation, integration tests and validation for SDK #6

improve documentation, integration tests and validation for SDK

improve documentation, integration tests and validation for SDK #6

Workflow file for this run

name: Tests
on:
push:
branches:
- "main"
- "releases/**"
jobs:
build:
name: build-app
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Build SDK
run: bun --cwd packages/sdk build
- name: Test app
run: bun test