Skip to content

Commit

Permalink
fix(ci): pin ubuntu version for component tests to 22.04
Browse files Browse the repository at this point in the history
Looks like latest ubuntu has issues with missing libraries required by webkit
  • Loading branch information
bjoerge committed Jan 13, 2025
1 parent 9e624fa commit e083aa3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/e2e-ct.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
install:
timeout-minutes: 30
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
playwright-ct-test:
timeout-minutes: 30
needs: [install]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
merge-reports:
if: always()
needs: [playwright-ct-test]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
actions: write # needed to delete the cache
timeout-minutes: 30
name: Cleanup (${{ matrix.project }})
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [playwright-ct-test]

strategy:
Expand Down

0 comments on commit e083aa3

Please sign in to comment.