Skip to content

Commit 41f048c

Browse files
committed
fix(workflow): change npm command for dependency installation
- Updated the dependency installation command from `npm ci` to `npm install` in the daily balance snapshots workflow for improved compatibility.
1 parent c41b48a commit 41f048c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/daily-balance-snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install script dependencies
3232
run: |
3333
cd scripts
34-
npm ci
34+
npm install
3535
3636
- name: Run batch snapshot orchestration
3737
run: |

0 commit comments

Comments
 (0)