Skip to content

test: bundle size

test: bundle size #76

Workflow file for this run

name: 'Commitlint'
on:
push:
branches:
- main
pull_request:
permissions:
contents: read # to fetch code (actions/checkout)
actions: read
jobs:
commitlint:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/setup
name: Setup
with:
node-version: ${{ matrix.node }}
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: pnpx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose