We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c881432 commit 967cef9Copy full SHA for 967cef9
1 file changed
.github/workflows/deploy.yml
@@ -21,11 +21,20 @@ jobs:
21
- name: Setup Node.js
22
uses: actions/setup-node@v4
23
with:
24
- node-version: '18'
+ node-version: '20'
25
cache: 'npm'
26
27
- - name: Install dependencies
28
- run: npm ci || npm install
+ - name: Clean install dependencies
+ run: |
29
+ # Clear npm cache and remove existing files
30
+ npm cache clean --force
31
+ rm -rf node_modules package-lock.json
32
+
33
+ # Install dependencies fresh
34
+ npm install
35
36
+ # Verify rollup is properly installed
37
+ npx rollup --version
38
39
- name: Build
40
run: npm run build
0 commit comments