From 63ff5087fca2e1f6369be7f851b971c5029d4b1d Mon Sep 17 00:00:00 2001 From: Daniel Gak Anagrov Date: Thu, 5 Jun 2025 11:21:38 +0200 Subject: [PATCH] feat(ci): disable hardened logic for install speed (#4893) * feat: disable hardened logic for install speed * feat: left one pipeline not hardened --- .circleci/config.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6a7806467..a961cca4c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,7 @@ aliases: - &yarn run: name: Install Dependencies - command: PUPPETEER_SKIP_DOWNLOAD=true PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 yarn + command: YARN_ENABLE_HARDENED_MODE=0 PUPPETEER_SKIP_DOWNLOAD=true PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 yarn workflows: test-build: @@ -433,7 +433,9 @@ jobs: working_directory: *work-dir steps: - checkout - - *yarn + - run: + name: Install Hardened Dependencies + command: YARN_ENABLE_HARDENED_MODE=1 PUPPETEER_SKIP_DOWNLOAD=true PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 yarn - run: name: Build public packages command: yarn build:public @@ -773,7 +775,7 @@ jobs: - checkout - run: name: Install Dependencies - command: PUPPETEER_SKIP_DOWNLOAD=true yarn + command: YARN_ENABLE_HARDENED_MODE=0 PUPPETEER_SKIP_DOWNLOAD=true yarn - run: name: Build public packages command: yarn build:public