Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Add step to 'run tests' GHA workflow to install Puppeteer libs. #490

Add step to 'run tests' GHA workflow to install Puppeteer libs.

Add step to 'run tests' GHA workflow to install Puppeteer libs. #490

Workflow file for this run

name: Run Tests
on: [push]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Install Puppeteer libraries
run: |
sudo apt-get update
sudo apt-get install -y libgbm1
- uses: actions/checkout@v2
- run: npm install
- run: npm test