From 87746bdcac6b27f0cd61bdea4d627a513c3ff782 Mon Sep 17 00:00:00 2001 From: 0d0 <0d0acre@esiliati.org> Date: Sun, 23 Feb 2025 01:40:40 +0100 Subject: [PATCH] We were using install instead of clean install --- .forgejo/workflows/ci.yaml | 2 +- .forgejo/workflows/dependency_check.yaml | 2 +- .forgejo/workflows/release.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index b37196c..33f22d4 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -17,5 +17,5 @@ jobs: node-version: '20' - name: Prepare, Check, Lint and Format run: | - npm install + npm ci npm run prepare diff --git a/.forgejo/workflows/dependency_check.yaml b/.forgejo/workflows/dependency_check.yaml index 1230794..57b010c 100644 --- a/.forgejo/workflows/dependency_check.yaml +++ b/.forgejo/workflows/dependency_check.yaml @@ -23,7 +23,7 @@ jobs: - name: Update deps, install them (to change package-lock.json) and commit run: | npx npm-check-updates --target minor -u - npm install + npm ci git config --global user.name "forgejo-bot" git config --global user.email "bot@pweapon.org" git add package.json || exit 0 diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml index 5e8872e..6d69d99 100644 --- a/.forgejo/workflows/release.yaml +++ b/.forgejo/workflows/release.yaml @@ -28,7 +28,7 @@ jobs: - name: Prepare, Check, Lint and Format run: | - npm install + npm ci touch .env echo "HOST=0.0.0.0" >> .env echo "ORIGIN=https://dl.emersa.it" >> .env