chore(deps): update dependency puppeteer to v24.8.0 #114
Workflow file for this run
This file contains hidden or 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
name: OGP Dependencies Checker | |
on: | |
pull_request: | |
types: [opened, synchronize, labeled] | |
jobs: | |
build: | |
# プルリクエストに dependencies ラベルを付けたとき | |
# dependencies ラベルがついている状態で、 Push したとき | |
if: | | |
((github.event.action == 'labeled') && | |
(github.event.label.name == 'ogp-dependencies')) || | |
((github.event.action == 'synchronize') && | |
contains(github.event.pull_request.labels.*.name, 'ogp-dependencies')) | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [latest] | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm ci | |
run: npm ci | |
- name: Test | |
run: npm run test | |
env: | |
CI: true |