Skip to content

clean up ethereum light clients #4257

clean up ethereum light clients

clean up ethereum light clients #4257

Workflow file for this run

name: Check
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
permissions: read-all
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
fail-on-draft:
if: github.event.pull_request.draft == true
runs-on: ubuntu-latest
steps:
- run: exit 1
check:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
fetch-depth: 0
- name: Check for LFS files
run: ./.github/scripts/lfs.sh
- name: Lint commit messages
uses: wagoid/commitlint-github-action@v5
with:
failOnWarnings: true