We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ddd665 commit e311920Copy full SHA for e311920
.github/workflows/release.yml
@@ -36,9 +36,10 @@ jobs:
36
node-version: 20
37
- name: Clean up
38
run: |
39
- # Skip all cleanup since npm ci provides clean state
40
- # and cache cleaning can break native binaries
41
- echo "Clean state provided by npm ci"
+ rm -rf node_modules
+ rm -f package-lock.json
+ npm cache clean --force
42
+ shell: bash
43
- run: npm install --include=optional
44
- run: npm rebuild @rollup/rollup-linux-x64-gnu || true
45
if: contains(matrix.os.name, 'linux')
0 commit comments