Skip to content

Commit 4578aea

Browse files
authored
Replace npm install with npm ci in workflow (#960)
* Replace npm install with npm ci in workflow * Replace npm install with npm ci in workflow
1 parent d326ac8 commit 4578aea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/create-pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
node-version: 22.x
5050
cache: 'npm'
51-
- run: npm install
51+
- run: npm ci
5252
- name: Set up Docker Buildx
5353
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f
5454
- name: Log in to the Container registry

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
node-version: 22.x
2828
cache: "npm"
29-
- run: npm install
29+
- run: npm ci
3030
- name: Set up Docker Buildx
3131
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f
3232
- name: Log in to the Container registry

0 commit comments

Comments
 (0)