We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5ad5c4 commit b58e007Copy full SHA for b58e007
.github/workflows/build.yml
@@ -116,7 +116,8 @@ jobs:
116
key: ${{ env.BUILD_CACHE_KEY }}
117
- name: Check bundle sizes
118
uses: getsentry/size-limit-action@v3
119
- if: github.ref != 'refs/release/**'
+ # Only run size check on master or pull requests
120
+ if: github.ref == 'refs/heads/master' || github.event_name == 'pull_request'
121
with:
122
github_token: ${{ secrets.GITHUB_TOKEN }}
123
skip_step: build
0 commit comments