mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
18 lines
390 B
Bash
Executable File
18 lines
390 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
git fetch origin master
|
|
git reset --hard FETCH_HEAD
|
|
|
|
make -C ui build/stats.json
|
|
mv ui/build/stats.json master.json
|
|
|
|
make clean
|
|
git reset --hard ${GITHUB_SHA}
|
|
make -C ui build/stats.json
|
|
|
|
./scripts/cra-bundle-stats-diff.py master.json ui/build/stats.json | tee diff.html
|
|
./scripts/pr-comment.py "Webpack bundle size diff" diff.html html
|