Skip to content

chore(deps): bump puppeteer from 19.7.1 to 19.11.1 #2087

chore(deps): bump puppeteer from 19.7.1 to 19.11.1

chore(deps): bump puppeteer from 19.7.1 to 19.11.1 #2087

Workflow file for this run

name: Specberus tests
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request_target:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v3
- name: Checkout PR
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run coverage
env:
W3C_API_KEY: ${{ secrets.W3C_API_KEY }}