Skip to content

Commit f048155

Browse files
committed
chore: fix ci
1 parent db1b446 commit f048155

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ jobs:
3535
run: yarn typecheck
3636

3737
- name: 📥 Install Playwright Browsers
38-
run: npx playwright install --with-deps
38+
# https://github.com/cypress-io/cypress-documentation/issues/5816
39+
run: |
40+
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
41+
sudo apt-get update
42+
npx playwright install --with-deps
3943
4044
- name: 🎭 Playwright Tests
4145
run: yarn test

0 commit comments

Comments
 (0)