Skip to content

Commit

Permalink
Install playwright deps myself
Browse files Browse the repository at this point in the history
  • Loading branch information
hopsoft committed Jan 8, 2024
1 parent 6358dc4 commit 8052c22
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,36 @@ jobs:
- name: Yarn install
run: yarn install --frozen-lockfile

- name: Install Playwright Dependencies
run: yarn playwright install-deps
#- name: Install Playwright Dependencies
#run: yarn playwright install-deps

#- name: Install Playwright Browsers
#run: yarn playwright install chromium
- name: Install Playwright Browsers
run: yarn playwright install chromium

- name: Install Playwright dependencies
run: |
apt-get update
apt-get -y --no-install-recommends install \
libasound2 \
libatk-bridge2.0-0 \
libatk1.0-0 \
libc6 \
libcairo-gobject2 \
libcairo2 \
libcups2 \
libdbus-1-3 \
libexpat1 \
libfontconfig1 \
libfreetype6 \
libgbm1 \
libgdk-pixbuf2.0-0 \
libglib2.0-0 \
libgtk-3-0 \
libnss3 \
libpango-1.0-0 \
libpangocairo-1.0-0 \
libstdc++6 \
zlib1g
- name: Run ruby tests
run: bundle exec rake

0 comments on commit 8052c22

Please sign in to comment.