From 49688a7c66833cd23fa1dc52f7e5ed4b1bddcfc9 Mon Sep 17 00:00:00 2001 From: lojzatran Date: Mon, 16 Dec 2024 19:14:50 +0000 Subject: [PATCH] fix(DEVX-363): run all tests in all nodejs versions --- .circleci/config.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 13797a920..fe17e7d26 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -110,6 +110,11 @@ jobs: name: Installing dependencies command: yarn install --frozen-lockfile - save_cache: *save_yarn_cache_node_20 + - run: + name: Install example dependencies + command: | + cd examples + yarn install --frozen-lockfile - run: name: Building packages command: yarn build @@ -137,6 +142,11 @@ jobs: name: Installing dependencies command: yarn install --frozen-lockfile - save_cache: *save_yarn_cache_node_22 + - run: + name: Install example dependencies + command: | + cd examples + yarn install --frozen-lockfile - run: name: Building packages command: yarn build