Skip to content

chore(deps-dev): bump @commitlint/cli from 15.0.0 to 19.2.2 #628

chore(deps-dev): bump @commitlint/cli from 15.0.0 to 19.2.2

chore(deps-dev): bump @commitlint/cli from 15.0.0 to 19.2.2 #628

Workflow file for this run

name: Conventional Commits
on: [push]
jobs:
commitlint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup node env πŸ—
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node }}
- name: Cache node_modules πŸ“¦
uses: actions/cache@v2.1.7
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies ☁
run: npm ci
- name: Lint commit messages πŸ‘€
run: npx commitlint --from=HEAD~1