Install playwright dependencies #3072
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
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 | |
- name: Set Chrome Version | |
run: | | |
CHROMEVER="$(chromedriver --version | cut -d' ' -f2)" | |
echo "Actions ChromeDriver is $CHROMEVER" | |
echo "CHROMEVER=${CHROMEVER}" >> $GITHUB_ENV | |
- name: Lint | |
run: yarn lint | |
- name: Unit Test | |
run: yarn test:unit | |
- name: Chrome Test | |
run: yarn test:browser --project=chrome | |
- name: Firefox Test | |
run: yarn test:browser --project=firefox | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: turbo-dist | |
path: dist/* |