Skip to content

Commit

Permalink
ci(workflows): remove lockfile flag
Browse files Browse the repository at this point in the history
  • Loading branch information
dysfunc committed Jan 30, 2024
1 parent 5486d18 commit 76cac3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
run: pnpm install
- name: Check size
run: pnpm build && pnpm test:size
storybook:
Expand All @@ -31,7 +31,7 @@ jobs:
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install pnpm --no-frozen-lockfile
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
Expand All @@ -42,7 +42,7 @@ jobs:
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
run: pnpm install
- name: Check storybook
run: pnpm build:storybook
editorconfig:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
run: pnpm install
- name: Run tests
run: pnpm test
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
run: pnpm install
- name: Publish
run: pnpm test && pnpm build && pnpm publish --no-git-checks
env:
Expand Down

0 comments on commit 76cac3f

Please sign in to comment.