Skip to content

Commit e62228d

Browse files
authored
Fix Puppeteer in CI by specifying Ubuntu version (#2223)
Puppeteer stopped working on the latest ubuntu version. We use Puppeteer for our tests in Pleasantest. For now we've downgraded to a version of Ubuntu that works. In the future we'll likely need to fix this in the Pleasantest repo or move to a different testing solution.
1 parent 9ebea66 commit e62228d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,12 @@ jobs:
7979
run: npm run build
8080

8181
test:
82-
runs-on: ubuntu-latest
82+
# Puppeteer stopped working on the latest ubuntu version
83+
# We use Puppeteer for our tests in Pleasantest.
84+
# For now we've downgraded to a version of Ubuntu that works.
85+
# In the future we'll likely need to fix this in the Pleasantest repo or
86+
# move to a different testing solution
87+
runs-on: ubuntu-22.04
8388
steps:
8489
- name: Checkout
8590
uses: actions/checkout@v3

0 commit comments

Comments
 (0)