Skip to content

Commit cb78091

Browse files
authored
build: use version control lockfile of package dependencies for development (#2551)
1 parent 1a6c510 commit cb78091

4 files changed

Lines changed: 6522 additions & 4 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: |

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
node_modules
2-
/package-lock.json
32
scripts/package-lock.json
43
examples/*/package-lock.json
54

0 commit comments

Comments
 (0)