Reactive Trader Prod Daily E2E #541
This file contains 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: 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 |