Skip to content

Commit ab15ac3

Browse files
authored
Add playwright to dependency installation steps. (pyscript#1852)
1 parent 0955a6b commit ab15ac3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
${{ runner.os }}-
3636
3737
- name: NPM Install
38-
run: npm install
38+
run: npm install && npx playwright install
3939

4040
- name: Build
4141
run: npm run build

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
${{ runner.os }}-
3838
3939
- name: npm install
40-
run: npm install
40+
run: npm install && npx playwright install
4141

4242
- name: build
4343
run: npm run build

.github/workflows/publish-unstable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
${{ runner.os }}-
4343
4444
- name: NPM Install
45-
run: npm install
45+
run: npm install && npx playwright install
4646

4747
- name: Build
4848
run: npm run build

0 commit comments

Comments
 (0)