Skip to content

docs(upgrade): updated upgrade paths version #359

docs(upgrade): updated upgrade paths version

docs(upgrade): updated upgrade paths version #359

Workflow file for this run

name: commit-linter
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install CommitLint and Dependencies
run: npm install @commitlint/config-conventional @commitlint/cli
- name: Lint Commits
run: |
first_commit=${{ github.event.pull_request.base.sha }}
last_commit=${{ github.event.pull_request.head.sha }}
npx commitlint --from $first_commit --to $last_commit -V