Skip to content

Bump puppeteer from 21.6.1 to 22.10.0 #162

Bump puppeteer from 21.6.1 to 22.10.0

Bump puppeteer from 21.6.1 to 22.10.0 #162

Workflow file for this run

name: Continous Integration
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test on node ${{ matrix.node_version }} os ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [18, 20, 22]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: npm ci, build, and test
run: |
npm ci
npm test