Skip to content

Commit 131336d

Browse files
update missing pnpm installs
1 parent ba47007 commit 131336d

5 files changed

+5
-5
lines changed

.github/workflows/LATEST_DEPENDENCY_VERSIONS.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Delete pnpm-lock.yaml
2525
run: "rm pnpm-lock.yaml"
2626
- name: Install
27-
run: pnpm install
27+
run: pnpm install --no-frozen-lockfile
2828
- name: List dependencies
2929
run: pnpm list
3030
- name: Run tests

.github/workflows/check-docs-site.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install
2727
run: pnpm install --frozen-lockfile --prefer-offline
2828
- name: Install Docs
29-
run: cd docs && pnpm install
29+
run: cd docs && pnpm install --frozen-lockfile --prefer-offline
3030
- name: lint
3131
run: cd docs && pnpm lint
3232
- name: Build

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: node scripts/check-dependencies.js
3939
- name: Install website
4040
working-directory: docs/
41-
run: pnpm install
41+
run: pnpm install --frozen-lockfile --prefer-offline
4242
- name: Lint website
4343
working-directory: docs/
4444
run: pnpm lint

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache: "pnpm"
2929

3030
- name: Install Dependencies
31-
run: pnpm install
31+
run: pnpm install --frozen-lockfile --prefer-offline
3232

3333
- name: Create Release Pull Request
3434
uses: changesets/action@v1

.github/workflows/test-slow-imports-rule.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
node-version: 16
3131
cache: "pnpm"
3232
- name: Install
33-
run: pnpm install
33+
run: pnpm install --frozen-lockfile --prefer-offline
3434
- name: Add slow import
3535
run: echo 'import "lodash";' >> src/internal/constants.ts
3636
- name: Build

0 commit comments

Comments
 (0)