Check binary size

This commit is contained in:
Viktor Liu
2025-09-01 17:29:52 +02:00
parent afd58dafac
commit e03158e79d

View File

@@ -55,3 +55,13 @@ jobs:
echo "Wasm build size:"
ls -lh netbird.wasm
SIZE=$(stat -c%s netbird.wasm)
SIZE_MB=$((SIZE / 1024 / 1024))
echo "Size: ${SIZE} bytes (${SIZE_MB} MB)"
if [ ${SIZE} -gt 52428800 ]; then
echo "Wasm binary size (${SIZE_MB}MB) exceeds 50MB limit!"
exit 1
fi