Skip to content

Commit 6887684

Browse files
Fix rollup build issue in GitHub Actions
1 parent 762d729 commit 6887684

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
registry-url: 'https://registry.npmjs.org'
2424

2525
- name: Install dependencies
26-
run: npm i
26+
run: |
27+
rm -rf package-lock.json node_modules
28+
npm i
2729
2830
# - name: Run tests
2931
# run: npm test

0 commit comments

Comments
 (0)