Skip to content

chore(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #1

chore(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

chore(deps): bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #1

Workflow file for this run

name: pr-title-lint
on:
pull_request_target:
branches:
- main
types:
- opened
- synchronize
- edited
permissions:
contents: read
jobs:
pr-title-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version-file: .nvmrc
- run: npm ci
- name: Lint PR title
run: echo "${PR_TITLE}" | npx commitlint
env:
PR_TITLE: ${{ github.event.pull_request.title }}