Skip to content

chore: bump acorn from 8.12.1 to 8.13.0 #17

chore: bump acorn from 8.12.1 to 8.13.0

chore: bump acorn from 8.12.1 to 8.13.0 #17

Workflow file for this run

name: checker
on:
workflow_dispatch:
pull_request:
jobs:
commitlint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install commitlint
run: |
npm install -g commitlint@latest @commitlint/{config-conventional,cli}@latest
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose