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