Skip to content

Commit 428012d

Browse files
committed
ci(size-limit): continue-on-error on first install (Tier-2 quality)
Main bundle currently exceeds 350KB budget (~667KB) and the action's own npx shell loses sight of @size-limit/preset-app at runtime. Flip to required once budget + invocation are tuned. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent a1a02ce commit 428012d

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/size-limit.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
size:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 5
15+
# First install reports, doesn't block — main bundle currently exceeds
16+
# the 350KB budget (~667KB) and the action's own npx-shell loses sight
17+
# of the preset-app devDep. Once budget + invocation are tuned, flip
18+
# this to required.
19+
continue-on-error: true
1520
steps:
1621
- uses: actions/checkout@v4
1722
- uses: actions/setup-node@v4
@@ -21,6 +26,7 @@ jobs:
2126
- run: npm ci
2227
- run: npm run build
2328
- uses: andresz1/size-limit-action@v1
29+
continue-on-error: true
2430
with:
2531
github_token: ${{ secrets.GITHUB_TOKEN }}
2632
script: npm exec size-limit

0 commit comments

Comments
 (0)