Skip to content

Commit

Permalink
Use --frozen-lockfile when install deps in CI (#2992)
Browse files Browse the repository at this point in the history
  • Loading branch information
hughns authored Feb 5, 2025
1 parent f49355a commit 4fc7fbe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/element-call.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
cache: "yarn"
node-version-file: ".node-version"
- name: Install dependencies
run: "yarn install"
run: "yarn install --frozen-lockfile"
- name: Build
run: "yarn run build"
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
cache: "yarn"
node-version-file: ".node-version"
- name: Install dependencies
run: "yarn install"
run: "yarn install --frozen-lockfile"
- name: Prettier
run: "yarn run prettier:check"
- name: i18n
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
cache: "yarn"
node-version-file: ".node-version"
- name: Install dependencies
run: "yarn install"
run: "yarn install --frozen-lockfile"
- name: Vitest
run: "yarn run test:coverage"
- name: Upload to codecov
Expand Down

0 comments on commit 4fc7fbe

Please sign in to comment.