Skip to content

Commit

Permalink
fix: release ci install deps with -f
Browse files Browse the repository at this point in the history
  • Loading branch information
windingwind committed May 29, 2024
1 parent 71969f6 commit 65069f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
node-version: 20

- name: Install deps
run: npm install
run: npm install -f

- name: Build
run: |
Expand Down

2 comments on commit 65069f6

@volatile-static
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@northword @windingwind 这个force是解决了什么问题?我看文档说是清空缓存,可是这环境会有缓存吗

@northword
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

强制安装,之前typescript-eslint没有适配eslint时候,不加 -f会报错

Please sign in to comment.