Skip to content

Fix CI tests

Fix CI tests #1581

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main, develop]
push:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgbm1 libnss3 libatk-bridge2.0-0 libgtk-3-0 libgbm-dev
- name: Install project dependencies
run: yarn install
- name: Run tests
run: yarn test
env:
CI: true
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true'