Skip to content

Commit

Permalink
fix(ci): freeze pnpm lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-devatom committed Jan 20, 2025
1 parent d355350 commit 200d9e4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ jobs:
node-version-file: .nvmrc
cache: pnpm

- run: pnpm install
- run: pnpm install --frozen-lockfile

- run: pnpm --filter @morpho-org/${{ matrix.package }} build
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
node-version-file: .nvmrc
cache: pnpm

- run: pnpm install
- run: pnpm install --frozen-lockfile

- run: pnpm lint
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
node-version-file: .nvmrc
cache: pnpm

- run: pnpm install
- run: pnpm install --frozen-lockfile

- id: release
run: node ../../scripts/release/release.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
cache: false

- run: pnpm install
- run: pnpm install --frozen-lockfile

- run: pnpm run test --coverage
env:
Expand Down

0 comments on commit 200d9e4

Please sign in to comment.