Create Post “2026-03-gnomad-v4-1-1” #547
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: Check image sizes | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| paths-ignore: | |
| - 'auth/**' | |
| jobs: | |
| check-image-sizes: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Check image sizes | |
| run: | | |
| if [[ -n $(find static/images -type f -size +1M) ]]; then | |
| exit 1 | |
| fi |