You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
790 B
YAML

version: 2.1
orbs:
cypress: cypress-io/cypress@3.1.3
workflows:
use-my-orb:
jobs:
- cypress/run:
install-browsers: true
start-command: npm run cy:ci
parallelism: 2 # use 2 CircleCI machines to finish quickly
group: 'all tests'
weekly:
triggers:
- schedule:
cron: "0 0 * * 0"
filters:
branches:
only:
- main
jobs:
- cypress/install:
build: 'npm install'
- cypress/run:
requires:
- cypress/install
record: true # record results on Cypress Dashboard
parallel: true # split all specs across machines
parallelism: 2 # use 2 CircleCI machines to finish quickly
group: 'all tests'