chore(sltp): bump abacus v to pull in new analytics + change sl/tp duration to 90 days #711
Workflow file for this run
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: ['opened', 'edited', 'reopened', 'synchronize'] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up pnpm | |
uses: dydxprotocol/setup-pnpm@v1 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Install dependencies | |
run: | | |
pnpm install @commitlint/config-conventional | |
- name: Lint PR Title | |
run: | | |
echo "${PR_TITLE}" | pnpx commitlint --config commitlint.config.ts | |
env: | |
PR_TITLE: '${{ github.event.pull_request.title }}' |