Skip to content

Commit 77fab08

Browse files
committed
ci(workflows): add --no-frozen-lockfile to install
1 parent 4e18d35 commit 77fab08

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
cache: 'pnpm'
4343
registry-url: 'https://registry.npmjs.org'
4444
- name: Install dependencies
45-
run: pnpm install
45+
run: pnpm install --no-frozen-lockfile
4646
- name: Check storybook
4747
run: pnpm build:storybook
4848
editorconfig:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
cache: 'pnpm'
2222
registry-url: 'https://registry.npmjs.org'
2323
- name: Install dependencies
24-
run: pnpm install
24+
run: pnpm install --no-frozen-lockfile
2525
- name: Run tests
2626
run: pnpm test

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
cache: 'pnpm'
2121
registry-url: 'https://registry.npmjs.org'
2222
- name: Install dependencies
23-
run: pnpm install
23+
run: pnpm install --no-frozen-lockfile
2424
- name: Publish
2525
run: pnpm test && pnpm build && pnpm publish --no-git-checks
2626
env:

0 commit comments

Comments
 (0)