Skip to content

Commit 56ac0d5

Browse files
committed
ci: use pinned dependencies during installations
1 parent a977ec8 commit 56ac0d5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
node --version
4242
npm --version
4343
- name: Install dependencies
44-
run: npm install --verbose
44+
run: npm ci --verbose
4545
- name: Build packages
4646
run: |
4747
# Build packages without internal dependencies

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
node-version: 24
3030

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

3434
- name: Create or update release PR
3535
id: changesets
@@ -63,7 +63,7 @@ jobs:
6363
registry-url: "https://registry.npmjs.org"
6464

6565
- name: Install dependencies
66-
run: npm install --verbose
66+
run: npm ci --verbose
6767

6868
- name: Build packages
6969
run: |

0 commit comments

Comments
 (0)