Skip to content

chore: update prost requirement from 0.13.5 to 0.14.3 in /server #67

chore: update prost requirement from 0.13.5 to 0.14.3 in /server

chore: update prost requirement from 0.13.5 to 0.14.3 in /server #67

Workflow file for this run

name: Commitlint
on:
pull_request:
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint commits
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose