From aec198e695a2cead57336b22a04f362c2ea2fd98 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 13:34:32 +0300 Subject: [PATCH] fmt --- .circleci/config.yml | 48 ++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d53682b..850b625 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,30 +1,30 @@ version: 2.1 orbs: - cypress: cypress-io/cypress@3.1.3 + cypress: cypress-io/cypress@3.1.3 jobs: - install-browser: - steps: - - checkout + install-browser: + steps: + - checkout workflows: - use-my-orb: - jobs: - - install-browser - - cypress/run: - requires: - - install-browser - cypress-command: npm run cy:ci - parallelism: 2 # use 2 CircleCI machines to finish quickly - weekly: - triggers: - - schedule: - cron: "0 0 * * 0" - filters: - branches: - only: - - main - jobs: - - cypress/run: - cypress-command: npm run cy:ci - parallelism: 2 # use 2 CircleCI machines to finish quickly + use-my-orb: + jobs: + - install-browser + - cypress/run: + requires: + - install-browser + cypress-command: npm run cy:ci + parallelism: 2 # use 2 CircleCI machines to finish quickly + weekly: + triggers: + - schedule: + cron: "0 0 * * 0" + filters: + branches: + only: + - main + jobs: + - cypress/run: + cypress-command: npm run cy:ci + parallelism: 2 # use 2 CircleCI machines to finish quickly