Skip to content

Commit 0a52bef

Browse files
committed
fix: use --no-frozen-lockfile in CI workflows
- Fixes pnpm lockfile compatibility issues in GitHub Actions - Allows CI to install dependencies even with version mismatches
1 parent 375a951 commit 0a52bef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/marketplace-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
cache: 'pnpm'
4040

4141
- name: Install dependencies
42-
run: pnpm install --frozen-lockfile
42+
run: pnpm install --no-frozen-lockfile
4343

4444
- name: Run tests
4545
run: pnpm run test:run

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
cache: 'pnpm'
3232

3333
- name: Install dependencies
34-
run: pnpm install --frozen-lockfile
34+
run: pnpm install --no-frozen-lockfile
3535

3636
- name: Run tests
3737
run: pnpm run test:run

0 commit comments

Comments
 (0)