From 721f31808a065b66187774de1e4407edd65f17d4 Mon Sep 17 00:00:00 2001 From: lojzatran Date: Mon, 16 Dec 2024 19:05:34 +0000 Subject: [PATCH] fix(DEVX-363): run all tests in all nodejs versions --- .circleci/config.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 78de41110..13797a920 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -94,6 +94,12 @@ jobs: - run: name: Running tests command: yarn test --testPathIgnorePatterns='packages/platform-sdk/test/integration-tests' + - run: + name: Running integration tests + command: yarn test packages/platform-sdk/test/integration-tests --coverage + - codecov/upload: + file: coverage/clover.xml + flags: integrationtests install_test_node_20: executor: node_20 @@ -104,6 +110,17 @@ jobs: name: Installing dependencies command: yarn install --frozen-lockfile - save_cache: *save_yarn_cache_node_20 + - run: + name: Building packages + command: yarn build + - run: + name: Running example tests + command: | + cd examples + yarn test + - run: + name: Running tests + command: yarn test --testPathIgnorePatterns='packages/platform-sdk/test/integration-tests' - run: name: Running integration tests command: yarn test packages/platform-sdk/test/integration-tests --coverage @@ -120,6 +137,17 @@ jobs: name: Installing dependencies command: yarn install --frozen-lockfile - save_cache: *save_yarn_cache_node_22 + - run: + name: Building packages + command: yarn build + - run: + name: Running example tests + command: | + cd examples + yarn test + - run: + name: Running tests + command: yarn test --testPathIgnorePatterns='packages/platform-sdk/test/integration-tests' - run: name: Running integration tests command: yarn test packages/platform-sdk/test/integration-tests --coverage