Skip to content

Commit 9b62d7a

Browse files
committed
chore: update npm install command in GitHub Actions workflows
- Changed the npm install command from 'npm ci' to 'npm i' in both manual_forked.yml and manual.yml workflows to streamline dependency installation.
1 parent d2504dc commit 9b62d7a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
node-version: "22.x"
2626
- name: Install node dependancies
27-
run: npm ci
27+
run: npm ci --omit=optional
2828
- name: Check Snyk
2929
continue-on-error: true
3030
uses: snyk/actions/node@master

.github/workflows/manual_forked.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
- name: Install node dependancies
29-
run: npm ci
29+
run: npm ci --omit=optional
3030
- name: Check Snyk
3131
continue-on-error: true
3232
uses: snyk/actions/node@master

0 commit comments

Comments
 (0)