Skip to content

fix: upgrade puppeteer from 19.7.2 to 19.11.1 #68

fix: upgrade puppeteer from 19.7.2 to 19.11.1

fix: upgrade puppeteer from 19.7.2 to 19.11.1 #68

Workflow file for this run

name: ci
on:
push:
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '14', '16' ]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
id: cache
with:
path: node_modules
key: ${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
registry-url: https://registry.npmjs.org/
- run: npm install -g npm@^6
- if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- run: npm test