We were using install instead of clean install
All checks were successful
Bump deps (only minor versions) / ci (push) Successful in 16s
All checks were successful
Bump deps (only minor versions) / ci (push) Successful in 16s
This commit is contained in:
parent
b13e27d7e5
commit
87746bdcac
3 changed files with 3 additions and 3 deletions
|
@ -17,5 +17,5 @@ jobs:
|
||||||
node-version: '20'
|
node-version: '20'
|
||||||
- name: Prepare, Check, Lint and Format
|
- name: Prepare, Check, Lint and Format
|
||||||
run: |
|
run: |
|
||||||
npm install
|
npm ci
|
||||||
npm run prepare
|
npm run prepare
|
||||||
|
|
|
@ -23,7 +23,7 @@ jobs:
|
||||||
- name: Update deps, install them (to change package-lock.json) and commit
|
- name: Update deps, install them (to change package-lock.json) and commit
|
||||||
run: |
|
run: |
|
||||||
npx npm-check-updates --target minor -u
|
npx npm-check-updates --target minor -u
|
||||||
npm install
|
npm ci
|
||||||
git config --global user.name "forgejo-bot"
|
git config --global user.name "forgejo-bot"
|
||||||
git config --global user.email "bot@pweapon.org"
|
git config --global user.email "bot@pweapon.org"
|
||||||
git add package.json || exit 0
|
git add package.json || exit 0
|
||||||
|
|
|
@ -28,7 +28,7 @@ jobs:
|
||||||
|
|
||||||
- name: Prepare, Check, Lint and Format
|
- name: Prepare, Check, Lint and Format
|
||||||
run: |
|
run: |
|
||||||
npm install
|
npm ci
|
||||||
touch .env
|
touch .env
|
||||||
echo "HOST=0.0.0.0" >> .env
|
echo "HOST=0.0.0.0" >> .env
|
||||||
echo "ORIGIN=https://dl.emersa.it" >> .env
|
echo "ORIGIN=https://dl.emersa.it" >> .env
|
||||||
|
|
Loading…
Add table
Reference in a new issue