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 218b00a commit 3fa30feCopy full SHA for 3fa30fe
.github/workflows/browser.yml
@@ -37,12 +37,12 @@ jobs:
37
if: github.event_name == 'pull_request'
38
run: sudo apt-get update && sudo apt-get install brotli
39
- name: Check Package Size
40
- if: github.event_name == 'pull_request'
+ if: github.event_name == 'pull_request' && matrix.version == '21'
41
env:
42
PR_NUMBER: ${{ github.event.number }}
43
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44
run: |
45
brotli packages/sdk/browser/dist/index.js
46
export PR_SIZE=$(stat -c %s packages/sdk/browser/dist/index.js.br)
47
- gh pr comment $PR_NUMBER -b "`@launchdarkly/js-client-sdk` size: $PR_SIZE"
+ gh pr comment --edit-last $PR_NUMBER -b "@launchdarkly/js-client-sdk: $PR_SIZE"
48
[ $PR_SIZE -le 25000 ] || exit 1
0 commit comments