Skip to content

Commit 45ba269

Browse files
committed
update workflow
1 parent a44beda commit 45ba269

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Diff for: .github/workflows/test.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,21 @@ jobs:
3636
- os: macos-latest
3737
name: macOS
3838
browser: webkit
39+
- os: ubuntu-latest
40+
name: Linux
41+
browser: webkit
3942

4043
name: ${{ matrix.name }} - ${{ matrix.browser }}
4144
runs-on: ${{ matrix.os }}
4245
# Windows server is not working yet
4346
continue-on-error: ${{ matrix.os == 'windows-latest' }}
4447
steps:
4548
- name: Setup firefox (macOS)
46-
if: matrix.os == 'macos-latest'
49+
if: matrix.os == 'macos-latest' && matrix.browser == 'firefox'
4750
uses: browser-actions/setup-firefox@v1
51+
- name: Setup webkit (Linux)
52+
if: matrix.os == 'ubuntu-latest' && matrix.browser == 'webkit'
53+
run: npx playwright install-deps webkit
4854
- uses: actions/checkout@v4
4955
with:
5056
submodules: true

0 commit comments

Comments
 (0)