Skip to content

Commit

Permalink
update missing pnpm installs
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherDedominici committed Nov 13, 2023
1 parent ba47007 commit 131336d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/LATEST_DEPENDENCY_VERSIONS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Delete pnpm-lock.yaml
run: "rm pnpm-lock.yaml"
- name: Install
run: pnpm install
run: pnpm install --no-frozen-lockfile
- name: List dependencies
run: pnpm list
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-docs-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install
run: pnpm install --frozen-lockfile --prefer-offline
- name: Install Docs
run: cd docs && pnpm install
run: cd docs && pnpm install --frozen-lockfile --prefer-offline
- name: lint
run: cd docs && pnpm lint
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: node scripts/check-dependencies.js
- name: Install website
working-directory: docs/
run: pnpm install
run: pnpm install --frozen-lockfile --prefer-offline
- name: Lint website
working-directory: docs/
run: pnpm lint
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cache: "pnpm"

- name: Install Dependencies
run: pnpm install
run: pnpm install --frozen-lockfile --prefer-offline

- name: Create Release Pull Request
uses: changesets/action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-slow-imports-rule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
node-version: 16
cache: "pnpm"
- name: Install
run: pnpm install
run: pnpm install --frozen-lockfile --prefer-offline
- name: Add slow import
run: echo 'import "lodash";' >> src/internal/constants.ts
- name: Build
Expand Down

0 comments on commit 131336d

Please sign in to comment.