From 0b5b53eb6beb310737c05b5bf15247cf98800cf1 Mon Sep 17 00:00:00 2001 From: Mario Nebl Date: Fri, 4 Mar 2022 21:56:48 +1100 Subject: [PATCH] ci: try dogfooding on circleci --- .circleci/config.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 450c196c3dce..5f4d7b88f7b5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,7 +27,7 @@ jobs: node-version: << parameters.node-version >> - node/install-packages: *install - run: - command: yarn test-ci-partial + command: yarn test-ci-partial --shard=<< matrix.shard >> - store_test_results: path: reports/junit @@ -49,8 +49,9 @@ workflows: build-and-deploy: jobs: - test-node: - name: test-node-partial-<< matrix.node-version >> + name: test-node-partial-<< matrix.node-version >>-<< matrix.shard >> matrix: parameters: node-version: ['12', '14', '16', '17'] - - test-jest-jasmine + shard: ['1/3', '2/3', '3/3'] + - test-jest-jasmine \ No newline at end of file