Skip to content

Configure Renovate - autoclosed #15

Configure Renovate - autoclosed

Configure Renovate - autoclosed #15

Workflow file for this run

name: Commitlint
on: [pull_request]
jobs:
lint-commits:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Ensures commit history is fetched
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18' # Specify a Node.js version
- name: Install dependencies
run: npm install
env:
GH_NPM_TOKEN: ${{ secrets.GH_NPM_TOKEN }}
- name: Lint last commit
run: npx commitlint --from=${{ github.event.pull_request.base.sha }} --to=${{ github.event.pull_request.head.sha }} --verbose