forked from AdaptiveConsulting/ReactiveTraderCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 821 Bytes
/
e2e-full.yml
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
name: Scheduled Weekday E2E
on:
schedule:
- cron: "55 8 * * 1-5"
defaults:
run:
working-directory: packages/client
jobs:
e2e:
name: End-to-end test against dev
runs-on: ubuntu-20.04
if: github.repository_owner == 'AdaptiveConsulting'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set Node version
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install
run: npm ci
- name: Test
env:
E2E_RTC_WEB_ROOT_URL: https://web.dev.reactivetrader.com
run: |
npm run e2e:web
- uses: actions/upload-artifact@v3
if: failure()
with:
name: playwright-report
path: packages/client/playwright-report/
retention-days: 7