64b06ca801
* test: modify existing workflows to make them run specific tests on separate runners * chore: increase token-e2e job timeout
20 lines
548 B
YAML
20 lines
548 B
YAML
name: Cypress tests -- night run
|
|
|
|
# This workflow runs the frontend tests against latest develop of the core to preempt breaking changes
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 4 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
nightly:
|
|
uses: ./.github/workflows/tests-dispatcher.yml
|
|
secrets: inherit
|
|
with:
|
|
project: '[console-lite-e2e, explorer-e2e, liquidity-provisioning-dashboard-e2e, stats-e2e, token-e2e, trading-e2e]'
|
|
vega-version: 'v0.58.0'
|
|
gobin: /home/runner/go/bin
|
|
tags: '@smoke, @regression, @slow'
|
|
night-run: true
|