chore(deps): update dependency typescript-eslint to v8.18.2 #1289
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint PR title | |
on: | |
pull_request: | |
types: | |
- edited | |
- opened | |
- ready_for_review | |
- synchronize | |
merge_group: | |
jobs: | |
lint-pr-title: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- id: lint-pr-title | |
name: Lint PR title | |
uses: ./actions/lint-pr-title | |
# This is an integration test ensuring that we don't regress absolute path | |
# support | |
- name: Copy lint-pr-title config to temp dir | |
run: | | |
cp actions/lint-pr-title/commitlint.config.js "${{ runner.temp }}/commitlint.config.js" | |
- id: lint-pr-title-separate-config | |
name: Lint PR title with separate config | |
uses: ./actions/lint-pr-title | |
with: | |
config-path: "${{ runner.temp }}/commitlint.config.js" |