Skip to content

Commit d4e0340

Browse files
committed
fix(ci): use bare yarn install for yarn v1 compatibility
yarn v1 doesn't accept --frozen-lockfile=false (it's not a valid flag format). And since no lockfile is committed (.gitignore excludes *.lock), the frozen-lockfile check would fail anyway. Match the existing gh-pages.yml pattern: plain yarn.
1 parent 13525d9 commit d4e0340

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
node-version: '20'
2323

2424
- name: Install dependencies
25-
run: yarn install --frozen-lockfile=false
25+
run: yarn
2626

2727
- name: Build
2828
run: yarn build

0 commit comments

Comments
 (0)