From 64d18718c8b0bde9c4eeda737e8110d8e99b3840 Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Tue, 16 Dec 2025 17:46:23 +0200 Subject: [PATCH 1/2] Dockerfile: use ci instead of install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d1c888941..b82836be6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -165,7 +165,7 @@ ENV TOPGEAR_ALLOWED_SUBMISSIONS_DOMAINS=$TOPGEAR_ALLOWED_SUBMISSIONS_DOMAINS RUN npm config set unsafe-perm true RUN git config --global url."https://git@".insteadOf git:// -RUN npm install +RUN npm ci RUN npm test RUN npm run build From d2bc8b7b27527775e5e480022f5e6802b04afcbf Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Tue, 16 Dec 2025 17:51:19 +0200 Subject: [PATCH 2/2] use "npm ci" on test job CI --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 38f442305..a510cc659 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -123,7 +123,7 @@ jobs: command: git config --global url."https://git@".insteadOf git:// - run: name: App npm install - command: npm install + command: npm ci no_output_timeout: 20m - save_cache: key: test-node-modules-{{ checksum "package-lock.json" }}