Skip to content

chore(frontend)(deps): bump ethers from 6.16.0 to 6.17.0 in /frontend… #137

chore(frontend)(deps): bump ethers from 6.16.0 to 6.17.0 in /frontend…

chore(frontend)(deps): bump ethers from 6.16.0 to 6.17.0 in /frontend… #137

Workflow file for this run

name: Lint Commit Messages & PR Titles
on:
pull_request:
types: [opened, edited, synchronize, reopened]
push:
branches: [main]
jobs:
commitlint:
name: Validate Conventional Commit & PR Title Format
runs-on: ubuntu-latest
steps:
- name: Checkout Codebase
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20
- name: Validate PR Title Format
if: github.event_name == 'pull_request'
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
feat
fix
docs
style
refactor
perf
test
build
ci
chore
revert
requireScope: false
- name: Validate Git Commit Messages
if: github.event_name == 'push'
run: |
npx @commitlint/cli --from ${{ github.event.before }} --to ${{ github.sha }} --verbose