Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joneugster committed Aug 23, 2024
1 parent a44beda commit 45ba269
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,21 @@ jobs:
- os: macos-latest
name: macOS
browser: webkit
- os: ubuntu-latest
name: Linux
browser: webkit

name: ${{ matrix.name }} - ${{ matrix.browser }}
runs-on: ${{ matrix.os }}
# Windows server is not working yet
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
Expand Down

0 comments on commit 45ba269

Please sign in to comment.