Skip to content

Commit 3f2f8d6

Browse files
committed
ci(workflows): remove lockfile flag
1 parent e4b187f commit 3f2f8d6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache: 'pnpm'
2323
registry-url: 'https://registry.npmjs.org'
2424
- name: Install dependencies
25-
run: pnpm install --no-frozen-lockfile
25+
run: pnpm install
2626
- name: Check size
2727
run: pnpm build && pnpm test:size
2828
storybook:
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: Checkout the repository
3333
uses: actions/checkout@v4
34-
- name: Install pnpm --no-frozen-lockfile
34+
- name: Install pnpm
3535
uses: pnpm/action-setup@v2
3636
with:
3737
version: 8
@@ -42,7 +42,7 @@ jobs:
4242
cache: 'pnpm'
4343
registry-url: 'https://registry.npmjs.org'
4444
- name: Install dependencies
45-
run: pnpm install --no-frozen-lockfile
45+
run: pnpm install
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 --no-frozen-lockfile
24+
run: pnpm install
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 --no-frozen-lockfile
23+
run: pnpm install
2424
- name: Publish
2525
run: pnpm test && pnpm build && pnpm publish --no-git-checks
2626
env:

0 commit comments

Comments
 (0)