Skip to content

Commit 4c449c6

Browse files
committed
fix pnpm global install
1 parent f120b0b commit 4c449c6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
with:
1515
node-version: '16.x'
1616
registry-url: 'https://registry.npmjs.org'
17+
- name: Install pnpm
18+
run: npm i -g pnpm
1719
- name: Install dependencies
18-
run: pnpm run install --frozen-lockfile
20+
run: pnpm -r i
1921
- name: Install chromedriver for windows
20-
run: npm_config_platform=win32 pnpm run install
22+
run: npm_config_platform=win32 npm i
2123
working-directory: packages/selenium-ide/node_modules/electron-chromedriver
2224
- name: Build all JS
2325
run: pnpm run build

0 commit comments

Comments
 (0)