Skip to content

chore: sync package-lock.json — add missing vue workspace entries #73

chore: sync package-lock.json — add missing vue workspace entries

chore: sync package-lock.json — add missing vue workspace entries #73

Workflow file for this run

name: Integration
on:
pull_request:
push:
branches: [main]
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Start local Soroban testnet
run: docker compose -f docker-compose.integration.yml up -d --wait
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Run integration suite
env:
SOROSTREAM_INTEGRATION_CONTRACT_ID: ${{ vars.SOROSTREAM_INTEGRATION_CONTRACT_ID }}
SOROSTREAM_INTEGRATION_TOKEN_ID: ${{ vars.SOROSTREAM_INTEGRATION_TOKEN_ID }}
run: |
bun install
bun run test:integration
- name: Stop local Soroban testnet
if: always()
run: docker compose -f docker-compose.integration.yml down -v