chore: remove base sepolia url from env vars #1035
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: pr lint | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review, edited] | |
jobs: | |
enforce_title: | |
name: pr lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Use commitlint to check PR title | |
run: echo "${{ github.event.pull_request.title }}" | bun commitlint |