Skip to content

build(deps): bump puppeteer from 19.11.1 to 22.9.0 #880

build(deps): bump puppeteer from 19.11.1 to 22.9.0

build(deps): bump puppeteer from 19.11.1 to 22.9.0 #880

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
node: [ 14, 16, 18 ]
steps:
- uses: actions/checkout@v4
- name: Setup Node.JS ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
# throws an error if yarn.lock is out-of-date
- run: yarn install --frozen-lockfile
# runs jest unittests
- run: yarn test