Skip to content

Commit 88887eb

Browse files
committed
Prevent updates of node-fetch
1 parent d456f16 commit 88887eb

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/update.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,16 @@ jobs:
1616
node-version: "14.x"
1717
- run: npm i -g pnpm
1818
- run: pnpm update -r --latest -E
19-
- run: pnpm install p-queue@6.6.2
20-
working-directory: ./components/assistive-webdriver
19+
- run: |
20+
( cd ./components/assistive-webdriver && pnpm install p-queue@6.6.2 )
21+
( cd ./components/assistive-webdriver && pnpm install node-fetch@2.6.1 )
22+
( cd ./components/assistive-webdriver && pnpm install -D @types/node-fetch@2.5.12 )
23+
( cd ./components/assistive-playwright-client && pnpm install node-fetch@2.6.1 )
24+
( cd ./components/assistive-playwright-client && pnpm install -D @types/node-fetch@2.5.12 )
25+
( cd ./components/assistive-playwright-server && pnpm install -D node-fetch@2.6.1 )
26+
( cd ./components/assistive-playwright-server && pnpm install -D @types/node-fetch@2.5.12 )
27+
( cd ./components/assistive-playwright-tester && pnpm install node-fetch@2.6.1 )
28+
( cd ./components/assistive-playwright-tester && pnpm install -D @types/node-fetch@2.5.12 )
2129
- name: Create pull request
2230
uses: peter-evans/create-pull-request@v3.8.0
2331
with:

0 commit comments

Comments
 (0)