15 lines
289 B
YAML
15 lines
289 B
YAML
|
name: Cypress tests -- night run
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '0 4 * * *'
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
nightly:
|
||
|
uses: ./.github/workflows/cypress-pr.yml
|
||
|
secrets: inherit
|
||
|
with:
|
||
|
projects: '["explorer-e2e","token-e2e","trading-e2e"]'
|
||
|
tags: '@smoke @regression @slow'
|