From 1d3a010b5000e0be331949b1b7a502b5786fd7b4 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 5 Feb 2026 15:46:01 +0000 Subject: Refactor Gitea workflow to alternate between npm install and npm ci for dependency management in different job stages --- .gitea/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index a68420a..7c64816 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -33,7 +33,7 @@ jobs: tar -xzf "$TARBALL" -C playground/.yalc/strapi-plugin-checkbox-list --strip-components=1 - name: Install playground deps working-directory: playground - run: npm ci + run: npm install - name: Build playground working-directory: playground run: npm run build @@ -62,7 +62,7 @@ jobs: package-lock.json playground/package-lock.json - name: Install root deps - run: npm install + run: npm ci - name: Build plugin run: npm run build - name: Pack plugin into playground .yalc @@ -72,7 +72,7 @@ jobs: tar -xzf "$TARBALL" -C playground/.yalc/strapi-plugin-checkbox-list --strip-components=1 - name: Install playground deps working-directory: playground - run: npm ci + run: npm install - name: Install Playwright browsers working-directory: playground run: npx playwright install --with-deps chromium -- cgit v1.2.3