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 f120b0b commit 4c449c6Copy full SHA for 4c449c6
.github/workflows/release.yml
@@ -14,10 +14,12 @@ jobs:
14
with:
15
node-version: '16.x'
16
registry-url: 'https://registry.npmjs.org'
17
+ - name: Install pnpm
18
+ run: npm i -g pnpm
19
- name: Install dependencies
- run: pnpm run install --frozen-lockfile
20
+ run: pnpm -r i
21
- name: Install chromedriver for windows
- run: npm_config_platform=win32 pnpm run install
22
+ run: npm_config_platform=win32 npm i
23
working-directory: packages/selenium-ide/node_modules/electron-chromedriver
24
- name: Build all JS
25
run: pnpm run build
0 commit comments