xarical/nginx-template
0
1name: Check file sizes2on: # or directly `on: [push]` to run the action on every push on any branch3 pull_request:4 branches: [main]5 6 # to run this workflow manually from the Actions tab7 workflow_dispatch:8 9jobs:10 check-file-size:11 runs-on: ubuntu-latest12 steps:13 - name: Check file sizes14 uses: ActionsDesk/lfs-warning@v2.015 with:16 filesizelimit: 10485760 # this is 10MB so we can sync to HF Spaces