DEVREL-1193 simple config should allow for skipping of EIDs #737
Workflow file for this run
This file contains hidden or 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: Verify example lockfiles | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify-example-lockfiles: | |
| name: Verify example lockfiles | |
| if: github.event.pull_request.user.login != 'layerzero-bot' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup environment | |
| uses: ./.github/workflows/actions/setup-environment | |
| - name: Verify lockfiles | |
| run: pnpm lockfiles:verify |