From 6c1ad1b021d759afced9a5db8084139ca75dfda7 Mon Sep 17 00:00:00 2001 From: Ferdi Koomen Date: Sat, 29 Oct 2022 12:25:05 +0200 Subject: [PATCH] Reverting to single instance --- .circleci/config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 43f92c7a..404bad17 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,6 @@ jobs: docker: - image: cimg/node:lts-browsers resource_class: large - parallelism: 5 working_directory: ~/repo steps: - checkout @@ -24,10 +23,10 @@ jobs: command: npm run release - run: name: Run unit tests - command: npm run test --shard=$(expr $CIRCLE_NODE_INDEX + 1)/$CIRCLE_NODE_TOTAL + command: npm run test - run: name: Run e2e tests - command: npm run test:e2e --shard=$(expr $CIRCLE_NODE_INDEX + 1)/$CIRCLE_NODE_TOTAL + command: npm run test:e2e - run: name: Submit to Codecov command: npm run codecov