We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5f85f5 commit 99c0231Copy full SHA for 99c0231
.github/workflows/deploy-github-pages.yml
@@ -31,14 +31,11 @@ jobs:
31
with:
32
bun-version: latest
33
34
- - name: Install Dependencies
+ - name: Clean and Install Dependencies
35
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
+ # Clean all caches and modules
+ rm -rf node_modules packages/*/node_modules ~/.bun/install/cache
+ # Install from scratch
42
bun install
43
44
# Prepare SvelteKit for Storybook
0 commit comments