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.
16 lines
503 B
YAML
16 lines
503 B
YAML
version: 2.1
|
|
orbs:
|
|
cypress: cypress-io/cypress@1
|
|
workflows:
|
|
build:
|
|
jobs:
|
|
- cypress/install:
|
|
build: 'npm install' # run a custom app build step
|
|
- 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' # name this group "all tests" on the dashboard
|