2022-09-29 13:13:09 +00:00
|
|
|
name: Cypress tests -- night run
|
2022-07-29 11:00:34 +00:00
|
|
|
|
|
|
|
# This workflow runs the frontend tests against latest develop of the core to preempt breaking changes
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 4 * * *'
|
2022-10-03 14:57:23 +00:00
|
|
|
workflow_dispatch:
|
2022-07-29 11:00:34 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
nightly:
|
2022-11-08 10:33:22 +00:00
|
|
|
uses: ./.github/workflows/tests-dispatcher.yml
|
|
|
|
secrets: inherit
|
|
|
|
with:
|
2023-01-11 17:02:16 +00:00
|
|
|
project: '[console-lite-e2e, explorer-e2e, token-e2e, trading-e2e]'
|
2022-11-08 13:01:37 +00:00
|
|
|
tags: --env.grepTags '[ @smoke, @regression, @slow ]'
|
2022-11-08 10:33:22 +00:00
|
|
|
night-run: true
|