Skip to content

chore(deps): update plugin com.android.application to v8.7.2 #281

chore(deps): update plugin com.android.application to v8.7.2

chore(deps): update plugin com.android.application to v8.7.2 #281

Workflow file for this run

name: Conventional Commits
on: [pull_request]
jobs:
lint-commits:
name: Lint Commits
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
with:
fetch-depth: 0
- name: Install Commit Linting Tool 🔧
run: npm install --save-dev @commitlint/{cli,config-conventional}
- name: Set Linting Config to Conventional Commits spec 🔧
run: |
echo "module.exports = { extends: ['@commitlint/config-conventional'] };" > commitlint.config.js
- name: Lint 🚨
run: npx commitlint --from HEAD~1 --to HEAD --verbose