Testnet Smoke Test #49
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: 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 |