Merge pull request #719 from judithJn/fix/ba-075-076-078-079-judithjn #243
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: Backend Soroban E2E (Testnet) | |
| # on: | |
| # workflow_dispatch: {} | |
| # push: | |
| # branches: | |
| # - main | |
| # jobs: | |
| # e2e-testnet: | |
| # name: E2E Testnet Contract Flows | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout code | |
| # uses: actions/checkout@v4 | |
| # - name: Setup Node.js | |
| # uses: actions/setup-node@v4 | |
| # with: | |
| # node-version: "20" | |
| # - name: Install pnpm | |
| # uses: pnpm/action-setup@v4 | |
| # with: | |
| # run_install: false | |
| # - name: Install dependencies | |
| # run: pnpm install --no-frozen-lockfile | |
| # - name: Build shared packages | |
| # run: pnpm turbo run build --filter=stellar-sdk | |
| # - name: Run Soroban E2E Flow | |
| # env: | |
| # APP_ENV: staging | |
| # STELLAR_NETWORK: testnet | |
| # NEXT_PUBLIC_STELLAR_NETWORK: testnet | |
| # E2E_WALLET_SECRET: ${{ secrets.E2E_WALLET_SECRET }} | |
| # RustAcademy_CONTRACT_ID: ${{ secrets. RustAcademy_CONTRACT_ID }} | |
| # SUPABASE_URL: ${{ secrets.SUPABASE_URL }} | |
| # SUPABASE_SERVICE_ROLE_KEY: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }} | |
| # run: | | |
| # echo "Starting E2E tests against Soroban testnet..." | |
| # pnpm turbo run test:e2e --filter=app/backend -- test/soroban-flow.e2e-spec.ts |