Skip to content

feat: add fee breakdown typings to IntentCost #203

feat: add fee breakdown typings to IntentCost

feat: add fee breakdown typings to IntentCost #203

name: Integration Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
environment: ["node-cjs", "node-esm", "react-native"]
steps:
# Setup and Build
- name: Check out the repo
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Build SDK
run: bun run build
# Package SDK for Testing
- name: Pack SDK
working-directory: src
run: bunx npm pack --pack-destination $GITHUB_WORKSPACE/
# Run Integration Tests
- name: Test ${{ matrix.environment }} integration
run: ./.github/scripts/test-${{ matrix.environment }}.sh