Skip to content

⬆️ deps: Upgrade dependency puppeteer to v23. #1018

⬆️ deps: Upgrade dependency puppeteer to v23.

⬆️ deps: Upgrade dependency puppeteer to v23. #1018

Workflow file for this run

name: ci:commit-msg
on:
push:
branches:
- main
pull_request:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
commit-msg:
name: Continuous integration (commit-msg)
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install 💾
uses: ./.github/actions/install
- name: Compute MERGE_BASE and HEAD_SHA 📜
id: event
uses: ./.github/actions/github/event
- name: Lint commits 👕
run: >
npm run check:commit-msg
--
--from ${{ steps.event.outputs.merge-base }}
--to ${{ steps.event.outputs.head-sha }}
--verbose