Skip to content

Testnet Smoke Test

Testnet Smoke Test #49

Workflow file for this run

name: Testnet Smoke Test
on:
schedule:
- cron: '0 0 * * *' # Run daily at midnight
workflow_dispatch: # Allow manual trigger
jobs:
smoke-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.0.0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run Testnet Smoke Test
env:
SOROBAN_RPC_URL: "https://soroban-testnet.stellar.org"
NETWORK_PASSPHRASE: "Test SDF Network ; September 2015"
CONTRACT_ID: ${{ secrets.TESTNET_CONTRACT_ID }}
run: npx ts-node scripts/smoke-test.ts