fix(character-counter): fixed character counter inconsistencies #11039
Workflow file for this run
This file contains hidden or 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 Commit Messages | |
| on: pull_request | |
| jobs: | |
| commitlint: | |
| # this will only run on non-forked PRs | |
| if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: checkout_pr | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - id: setup_node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ">=24.11.0 24" | |
| - name: Update npm to 11.11.1 | |
| run: npm install -g npm@11.11.1 | |
| - id: install_dependencies | |
| run: npm ci | |
| - id: lint_commits | |
| run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose |