Skip to content

Merge pull request #740 from ahmadogo/fix/stellar-ingestion #254

Merge pull request #740 from ahmadogo/fix/stellar-ingestion

Merge pull request #740 from ahmadogo/fix/stellar-ingestion #254

Workflow file for this run

# 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