Skip to content

Commit

Permalink
ci: fix next.js repo tests workflow for 13.5.1
Browse files Browse the repository at this point in the history
The latest Ubuntu (24.04) doesn't work out of the box with older versions of playwright.

next@latest and next@canary have been updated: vercel/next.js#71312.

13.5.1 has not been
  • Loading branch information
serhalp committed Oct 16, 2024
1 parent 68910b0 commit 4043f82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ jobs:
e2e:
needs: setup
runs-on: ubuntu-latest
# `playwright install` fails on Ubuntu 24.04+ with older versions of playwright (which 13.5.1 has)
runs-on: "${{ matrix.version_spec.selector == '13.5.1' && 'ubuntu-22.04' || 'ubuntu-latest' }}"
name: Test next@${{ matrix.version_spec.selector }} group ${{ matrix.group }}/${{ needs.setup.outputs.total }}
timeout-minutes: 120
strategy:
Expand Down

0 comments on commit 4043f82

Please sign in to comment.