Skip to content

Commit ba1f333

Browse files
committed
Add to common and sdk-client.
1 parent 6c103a4 commit ba1f333

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/common.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,11 @@ jobs:
2525
with:
2626
workspace_name: '@launchdarkly/js-sdk-common'
2727
workspace_path: packages/shared/common
28+
- name: Check package size
29+
if: github.event_name == 'pull_request' && matrix.version == '21'
30+
uses: ./actions/package-size
31+
with:
32+
github_token: ${{ secrets.GITHUB_TOKEN }}
33+
target_file: 'packages/shared/common/dist/esm/index.mjs'
34+
package_name: '@launchdarkly/js-sdk-common'
35+
pr_number: ${{ github.event.number }}

.github/workflows/sdk-client.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,11 @@ jobs:
2222
with:
2323
workspace_name: '@launchdarkly/js-client-sdk-common'
2424
workspace_path: packages/shared/sdk-client
25+
- name: Check package size
26+
if: github.event_name == 'pull_request' && matrix.version == '21'
27+
uses: ./actions/package-size
28+
with:
29+
github_token: ${{ secrets.GITHUB_TOKEN }}
30+
target_file: 'packages/shared/sdk-client/dist/esm/index.mjs'
31+
package_name: '@launchdarkly/js-client-sdk-common'
32+
pr_number: ${{ github.event.number }}

0 commit comments

Comments
 (0)