1 parent 12d9b57 commit c15c503Copy full SHA for c15c503
1 file changed
.github/workflows/ci.yml
@@ -90,7 +90,7 @@ jobs:
90
test-e2e-web:
91
needs: [changes]
92
if: needs.changes.outputs.web == 'true'
93
- runs-on: ubuntu-latest
+ runs-on: macos-26
94
steps:
95
- name: Checkout
96
uses: actions/checkout@v4
@@ -101,13 +101,13 @@ jobs:
101
- name: Cache Playwright browsers
102
uses: actions/cache@v4
103
with:
104
- path: ~/.cache/ms-playwright
+ path: ~/Library/Caches/ms-playwright
105
key: ${{ runner.os }}-playwright-${{ hashFiles('yarn.lock') }}
106
restore-keys: |
107
${{ runner.os }}-playwright-
108
109
- name: Install Playwright browsers
110
- run: yarn playwright install --with-deps chromium
+ run: yarn playwright install chromium
111
112
- name: Run web e2e tests
113
run: yarn test:e2e:web
0 commit comments