fix(deps): update dependency next to v16.0.7 [security] #1999
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: Pull Request Title Check | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| pull-request-title-check: | |
| runs-on: buildjet-2vcpu-ubuntu-2204 | |
| container: | |
| image: node:22-slim | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Check pull request title | |
| run: | | |
| npx tsx ./scripts/pull-request-title-check.ts |