diff options
| author | Valentin Popov <valentin@popov.link> | 2026-02-05 18:46:01 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-02-05 18:46:01 +0300 |
| commit | 1d3a010b5000e0be331949b1b7a502b5786fd7b4 (patch) | |
| tree | 9883ca0fa9b803133c89e00eaec30f346b287824 /.gitea/workflows | |
| parent | 60310f5b9de216a67b212d37417b9f7da1814302 (diff) | |
| download | strapi-plugin-checkbox-list-1d3a010b5000e0be331949b1b7a502b5786fd7b4.tar.xz strapi-plugin-checkbox-list-1d3a010b5000e0be331949b1b7a502b5786fd7b4.zip | |
Refactor Gitea workflow to alternate between npm install and npm ci for dependency management in different job stages
Diffstat (limited to '.gitea/workflows')
| -rw-r--r-- | .gitea/workflows/test.yml | 6 |
1 files 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 |
