Skip to content

Commit 88ca06f

Browse files
committed
test message
1 parent 9c62afd commit 88ca06f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/performance.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,17 +171,17 @@ jobs:
171171
echo "Checking bundle size..."
172172
BUNDLE_SIZE=$(du -b dist/index.js | cut -f1)
173173
echo "Bundle size: $BUNDLE_SIZE bytes"
174-
174+
175175
# Bundle size assertions
176176
MAX_BUNDLE_SIZE=50000 # 50KB
177-
177+
178178
if [ "$BUNDLE_SIZE" -gt "$MAX_BUNDLE_SIZE" ]; then
179179
echo "❌ Bundle size $BUNDLE_SIZE bytes exceeds limit of $MAX_BUNDLE_SIZE bytes"
180180
exit 1
181181
fi
182-
182+
183183
echo "✅ Bundle size within acceptable limits"
184-
184+
185185
echo "Number of lines in dist:"
186186
find dist -name "*.js" -exec wc -l {} \;
187187

0 commit comments

Comments
 (0)