Skip to content

Reactive Trader Prod Daily E2E #426

Reactive Trader Prod Daily E2E

Reactive Trader Prod Daily E2E #426

Workflow file for this run

name: Reactive Trader Prod Daily E2E
on:
schedule:
- cron: "55 8 * * *"
defaults:
run:
working-directory: packages/client
jobs:
e2e:
name: End-to-end smoke test against RT Prod
runs-on: ubuntu-20.04
if: github.repository_owner == 'AdaptiveConsulting'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Test
env:
E2E_RTC_WEB_ROOT_URL: https://web.prod.reactivetrader.com
run: npm run e2e:web:smoke
- name: Artifact Upload
uses: actions/upload-artifact@v4
if: failure()
with:
name: playwright-report
path: packages/client/playwright-report/
retention-days: 7