Skip to content

chore(deps): Bump ws from 8.16.0 to 8.17.1 #228

chore(deps): Bump ws from 8.16.0 to 8.17.1

chore(deps): Bump ws from 8.16.0 to 8.17.1 #228

Workflow file for this run

name: PR Linting
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
jobs:
lint-pr-title:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
npm install @commitlint/config-conventional
- name: Lint the PR Title
run: |
echo "${PR_TITLE}" | npx --yes commitlint
env:
PR_TITLE: '${{ github.event.pull_request.title }}'