Skip to content

build(deps): bump puppeteer from 21.5.2 to 22.5.0 #565

build(deps): bump puppeteer from 21.5.2 to 22.5.0

build(deps): bump puppeteer from 21.5.2 to 22.5.0 #565

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Run E2E tests
run: npm run test:e2e
- name: Run example
run: node examples/build.js 100 100
- name: Report coverage
run: npm run coverage:ci
if: startsWith(matrix.node, '18')