Skip to content

Commit 30dc07b

Browse files
authored
Fix npm publish (#1268)
* reduce playwright dependencies installed and add playwright install for npm publish CI
1 parent eea649c commit 30dc07b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/npm_publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
- name: Install Depencencies
2222
run: yarn install
2323

24+
- name: Install Playwright
25+
run: yarn playwright install --with-deps chromium firefox
26+
2427
- name: Build, Test, and Package
2528
run: yarn preversion
2629
env:

.github/workflows/tests.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,7 @@ jobs:
3030
run: yarn install --network-concurrency 1
3131

3232
- name: Install Playwright
33-
run: yarn playwright install
34-
35-
- name: Install Playwright Dependencies
36-
run: yarn playwright install-deps
33+
run: yarn playwright install --with-deps chromium firefox
3734

3835
- name: Build
3936
run: yarn build:prod

0 commit comments

Comments
 (0)