Skip to content

Commit 4fc7fbe

Browse files
authored
Use --frozen-lockfile when install deps in CI (#2992)
1 parent f49355a commit 4fc7fbe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/element-call.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
cache: "yarn"
3131
node-version-file: ".node-version"
3232
- name: Install dependencies
33-
run: "yarn install"
33+
run: "yarn install --frozen-lockfile"
3434
- name: Build
3535
run: "yarn run build"
3636
env:

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
cache: "yarn"
1515
node-version-file: ".node-version"
1616
- name: Install dependencies
17-
run: "yarn install"
17+
run: "yarn install --frozen-lockfile"
1818
- name: Prettier
1919
run: "yarn run prettier:check"
2020
- name: i18n

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
cache: "yarn"
1717
node-version-file: ".node-version"
1818
- name: Install dependencies
19-
run: "yarn install"
19+
run: "yarn install --frozen-lockfile"
2020
- name: Vitest
2121
run: "yarn run test:coverage"
2222
- name: Upload to codecov

0 commit comments

Comments
 (0)