-
Notifications
You must be signed in to change notification settings - Fork 180
45 lines (37 loc) · 1.28 KB
/
Copy pathsoroban-e2e.yml
File metadata and controls
45 lines (37 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 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