From 0e851cd3d5a1bf5b3fa00d255557f0516acc52aa Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 19 Jul 2021 20:46:17 +0300 Subject: [PATCH] add hourly job in circleci --- .circleci/config.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a4ba3d2..a83150c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,4 +20,14 @@ workflows: filters: branches: only: - - master \ No newline at end of file + - master + 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'