Skip to content

Commit

Permalink
Install playwright dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgemanrubia committed Oct 15, 2024
1 parent b9f1957 commit 59f735b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,25 @@ jobs:
with:
node-version: '18'
cache: 'yarn'

- name: Install missing libraries
run: |
sudo apt-get update
sudo apt-get install -y \
libdbus-glib-1-2 \
libsoup2.4 \
libpcre3 \
libvpx7 \
libicu70 \
libicui18n70 \
libicuuc70
- name: Install Playwright browsers dependencies
run: |
sudo apt-get update
sudo sudo apt-get install libdbus-glib-1-2
- name: Install Playwright dependencies
run: npx playwright install-deps
- run: yarn install --frozen-lockfile
- run: yarn run playwright install --with-deps
- run: yarn build
Expand Down

0 comments on commit 59f735b

Please sign in to comment.