Skip to content

Commit

Permalink
ci: introduce bundle size for package @excalidraw/excalidraw (excalid…
Browse files Browse the repository at this point in the history
…raw#6785)

* ci: update bundle size limit

* change the size script to track bundle size on the package excalidraw

* fix build command

* fix

* remove

* fix

* update script

* fix
  • Loading branch information
ad1992 authored Jul 19, 2023
1 parent a80ac4c commit 9fc15d8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/size-limit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "size"
name: "Bundle Size check @excalidraw/excalidraw"
on:
pull_request:
branches:
Expand All @@ -15,12 +15,10 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install and build
run: yarn --frozen-lockfile
env:
CI: true
- uses: andresz1/size-limit-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
build_script: build:app
build_script: size
skip_step: install
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,13 @@
"autorelease": "node scripts/autorelease.js",
"prerelease": "node scripts/prerelease.js",
"release": "node scripts/release.js",
"size": "yarn build:app && size-limit"
"size": "node scripts/buildPackageExcalidraw.js && size-limit"
},
"size-limit": [
{
"limit": "500kb",
"path": [
"build/static/js/*.js"
"src/packages/excalidraw/dist/excalidraw.development.js",
"src/packages/excalidraw/dist/excalidraw.production.min.js"
]
}
]
Expand Down
16 changes: 16 additions & 0 deletions scripts/buildPackageExcalidraw.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const { execSync } = require("child_process");

const excalidrawDir = `${__dirname}/../src/packages/excalidraw`;

const build = () => {
try {
execSync(`yarn --frozen-lockfile`);
execSync(`yarn --frozen-lockfile`, { cwd: excalidrawDir });
execSync(`yarn run build:umd`, { cwd: excalidrawDir });
} catch (err) {
console.error(err);
process.exit(1);
}
};

build();

0 comments on commit 9fc15d8

Please sign in to comment.