feat: STRF-12315 Bump stencil-paper version; BREAKING CHANGE: Drop Node 16 Support #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Title Check | |
on: | |
pull_request: | |
branches: [master, main] | |
jobs: | |
check-pr-title: | |
env: | |
TITLE: ${{ github.event.pull_request.title }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Verify Github PR Title | |
run: echo $TITLE | npx commitlint | |
- name: Verify Git Commit Name | |
run: git log -1 --pretty=format:"%s" | npx commitlint |