feat: add fee breakdown typings to IntentCost #203
Workflow file for this run
This file contains hidden or 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: 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 |