From 5a577a61dc56aaa005476fea94003296a029ce31 Mon Sep 17 00:00:00 2001 From: nitsan Date: Mon, 17 Nov 2025 10:00:21 +0200 Subject: [PATCH 1/2] add npm i after npm ci --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef2a06f..bef682b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,9 @@ jobs: node-version: 22 cache: 'npm' - name: 'npm install' - run: npm ci --prefer-offline --no-audit --no-fund + run: | + npm ci --prefer-offline --no-audit --no-fund + npm i # fix npm bug unit-test: name: unit-tests runs-on: ubuntu-latest From 3325832a2b398aa79c142848d7c864853f563662 Mon Sep 17 00:00:00 2001 From: nitsan Date: Mon, 17 Nov 2025 10:24:11 +0200 Subject: [PATCH 2/2] add flags --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bef682b..01c9e09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: 'npm install' run: | npm ci --prefer-offline --no-audit --no-fund - npm i # fix npm bug + npm i --prefer-offline --no-audit --no-fund # fix npm bug unit-test: name: unit-tests runs-on: ubuntu-latest