Skip to content

Commit 77028ca

Browse files
committed
ci: force fresh npm install in release workflow to debug lint issues
1 parent 86c804b commit 77028ca

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@ jobs:
3131
node-version: '24'
3232
registry-url: 'https://registry.npmjs.org'
3333

34-
- name: Install dependencies
35-
run: npm ci --ignore-scripts
34+
- name: Clear npm cache and install dependencies
35+
run: |
36+
npm cache clean --force
37+
rm -rf node_modules package-lock.json
38+
npm install --ignore-scripts
3639
3740
- name: Lint code
3841
run: npm run lint

0 commit comments

Comments
 (0)