From 7b009a88a6163b9079f294f517f1bd7deda15cb6 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 19 Jul 2021 20:15:31 +0300 Subject: [PATCH] test circleci config --- .circleci/config.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..7d7e149 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,15 @@ +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