chore: sync package-lock.json — add missing vue workspace entries #73
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 | |
| 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 |