Use --frozen-lockfile when install deps in CI (#2992)

This commit is contained in:
Hugh Nimmo-Smith
2025-02-05 16:28:52 +00:00
committed by GitHub
parent f49355a51f
commit 4fc7fbe8fe
3 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ jobs:
cache: "yarn" cache: "yarn"
node-version-file: ".node-version" node-version-file: ".node-version"
- name: Install dependencies - name: Install dependencies
run: "yarn install" run: "yarn install --frozen-lockfile"
- name: Build - name: Build
run: "yarn run build" run: "yarn run build"
env: env:

View File

@@ -14,7 +14,7 @@ jobs:
cache: "yarn" cache: "yarn"
node-version-file: ".node-version" node-version-file: ".node-version"
- name: Install dependencies - name: Install dependencies
run: "yarn install" run: "yarn install --frozen-lockfile"
- name: Prettier - name: Prettier
run: "yarn run prettier:check" run: "yarn run prettier:check"
- name: i18n - name: i18n

View File

@@ -16,7 +16,7 @@ jobs:
cache: "yarn" cache: "yarn"
node-version-file: ".node-version" node-version-file: ".node-version"
- name: Install dependencies - name: Install dependencies
run: "yarn install" run: "yarn install --frozen-lockfile"
- name: Vitest - name: Vitest
run: "yarn run test:coverage" run: "yarn run test:coverage"
- name: Upload to codecov - name: Upload to codecov