Skip to content

[DEV/DEP]: Bump puppeteer from 20.7.4 to 21.3.6 #864

[DEV/DEP]: Bump puppeteer from 20.7.4 to 21.3.6

[DEV/DEP]: Bump puppeteer from 20.7.4 to 21.3.6 #864

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 15.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
continue-on-error: true
run: |
npm install
npm audit fix
- name: Run Browserify
run: |
npm run build
- name: Run Tests
run: |
npm run test