Skip to content

Commit 53ce238

Browse files
authored
Update GitHub workflows to use 'npm ci' for dependency installation instead of 'npm install' for improved consistency and performance. (#296)
1 parent 92ae0af commit 53ce238

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/roam-main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
cache: "npm"
2626

2727
- name: Install Dependencies
28-
run: npm install
28+
run: npm ci
2929

3030
- name: Deploy
3131
run: npx turbo run deploy --filter=roam

.github/workflows/roam-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cache: "npm"
3030

3131
- name: Install Dependencies
32-
run: npm install
32+
run: npm ci
3333

3434
- name: Deploy
3535
run: npx turbo run deploy --filter=roam

.github/workflows/roam-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
cache: "npm"
2525

2626
- name: Install Dependencies
27-
run: npm install
27+
run: npm ci
2828

2929
- name: Update Roam Depot Extension
3030
run: npx turbo run publish --filter=roam

0 commit comments

Comments
 (0)