Skip to content

Commit 99c0231

Browse files
committed
fix: clean bun cache and do fresh install
1 parent f5f85f5 commit 99c0231

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/deploy-github-pages.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,11 @@ jobs:
3131
with:
3232
bun-version: latest
3333

34-
- name: Install Dependencies
34+
- name: Clean and Install Dependencies
3535
run: |
36-
rm -rf node_modules packages/*/node_modules
37-
bun install --frozen-lockfile || bun install
38-
39-
- name: Install UI Dependencies
40-
run: |
41-
cd packages/ui
36+
# Clean all caches and modules
37+
rm -rf node_modules packages/*/node_modules ~/.bun/install/cache
38+
# Install from scratch
4239
bun install
4340
4441
# Prepare SvelteKit for Storybook

0 commit comments

Comments
 (0)