build(deps): bump puppeteer from 13.7.0 to 22.6.5 #111
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow helps ensure that generated innards of `dist` directory match what we expect them to be. | |
# The `dist` is a particular directory in Actions that contains distributable JS files. | |
# In Actions, the `dist` is generated through a build process from other source files. | |
name: Check dist | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
jobs: | |
check-dist-call: | |
name: Check dist | |
uses: actions/reusable-workflows/.github/workflows/check-dist.yml@main | |
with: | |
node-version: "12.x" |