From 45ba26995db72755624742dbf19f2760641e478b Mon Sep 17 00:00:00 2001 From: Jon Eugster Date: Sat, 24 Aug 2024 00:51:03 +0200 Subject: [PATCH] update workflow --- .github/workflows/test.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 40e5a8a..63bf290 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,6 +36,9 @@ jobs: - os: macos-latest name: macOS browser: webkit + - os: ubuntu-latest + name: Linux + browser: webkit name: ${{ matrix.name }} - ${{ matrix.browser }} runs-on: ${{ matrix.os }} @@ -43,8 +46,11 @@ jobs: continue-on-error: ${{ matrix.os == 'windows-latest' }} steps: - name: Setup firefox (macOS) - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-latest' && matrix.browser == 'firefox' uses: browser-actions/setup-firefox@v1 + - name: Setup webkit (Linux) + if: matrix.os == 'ubuntu-latest' && matrix.browser == 'webkit' + run: npx playwright install-deps webkit - uses: actions/checkout@v4 with: submodules: true