Skip to content

feat: export BOXES and SampleEntry #45

feat: export BOXES and SampleEntry

feat: export BOXES and SampleEntry #45

Workflow file for this run

name: Commitlint
on:
push:
branches:
- main
- next
pull_request:
types:
- opened
- synchronize
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: npm
node-version: lts/*
- run: npm clean-install
- run: npm install --global corepack@latest
- run: corepack npm audit signatures
- name: Validate current commit (last commit) with commitlint
if: github.event_name == 'push'
run: npx commitlint --last --verbose
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose