Skip to content

Commit 8992bd2

Browse files
authored
Simplify dependency installation in workflow
1 parent 55d804c commit 8992bd2

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,7 @@ jobs:
3434
cache: 'pnpm'
3535

3636
- name: Install dependencies
37-
run: |
38-
if [ -f pnpm-lock.yaml ]; then
39-
pnpm install --frozen-lockfile
40-
else
41-
pnpm install
42-
fi
37+
run: pnpm install --no-frozen-lockfile
4338

4439
- name: Build
4540
run: pnpm run build

0 commit comments

Comments
 (0)