Skip to content

Commit ed7d7d8

Browse files
committed
fix: skip playwright install-deps on macOS
The install-deps command is Linux-specific and not needed on macOS where system dependencies are handled differently.
1 parent 5155e16 commit ed7d7d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/actions/setup-playwright/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ runs:
3131
shell: bash
3232
run: bun x playwright install ${{ inputs.browsers }}
3333

34-
- name: Install Playwright system dependencies
34+
- name: Install Playwright system dependencies (Linux)
35+
if: runner.os == 'Linux'
3536
shell: bash
3637
run: bun x playwright install-deps ${{ inputs.browsers }}

0 commit comments

Comments
 (0)