Skip to content

Bump puppeteer from 21.3.6 to 21.3.7 #5613

Bump puppeteer from 21.3.6 to 21.3.7

Bump puppeteer from 21.3.6 to 21.3.7 #5613

Workflow file for this run

---
name: pr-tests
on: pull_request
jobs:
test:
name: Run tests
runs-on: ubuntu-22.04
env:
NODE_ENV: development
TEST_TIMEOUT: 60000
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
with:
node-version-file: "package.json"
- run: npm ci
- name: Build
run: npm run build
- name: Test - Unit
run: npm run test:unit
- name: Lint
run: npm run lint