Skip to content

build(deps): bump the npm-production group across 1 directory with 2 updates #53

build(deps): bump the npm-production group across 1 directory with 2 updates

build(deps): bump the npm-production group across 1 directory with 2 updates #53

Workflow file for this run

---
# Checks that PR titles conform to Conventional Commits
# See https://www.conventionalcommits.org/en/v1.0.0/ for more information
name: PR - Title check
'on':
pull_request:
types:
- opened
- reopened
- edited
- synchronize
permissions: {}
jobs:
check-title:
runs-on: ubuntu-latest
steps:
- name: install
run: |
npm install -g @commitlint/cli @commitlint/config-conventional
echo "module.exports = {extends: ['@commitlint/config-conventional']}" > commitlint.config.js
- name: lint
env:
PR_TITLE: ${{github.event.pull_request.title}}
run: |
echo "$PR_TITLE" | commitlint