Skip to content

chore(selection-panel): set chromatic min-height (TO BE DELETED) #2316

chore(selection-panel): set chromatic min-height (TO BE DELETED)

chore(selection-panel): set chromatic min-height (TO BE DELETED) #2316

Workflow file for this run

name: PR Title Linter
on:
pull_request:
types: [opened, edited, reopened, unlocked]
permissions: read-all
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn install --frozen-lockfile --non-interactive
- name: 'Lint: Pull request title'
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: echo "$PR_TITLE" | yarn commitlint
- name: 'Warning: Pull request title must match conventional commits pattern!'
if: ${{ failure() }}
run: echo "Pull request title must match conventional commits pattern!"