feat: support reactive themes up to 4 levels deep #765
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: performance | |
on: [pull_request] | |
jobs: | |
size: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 50 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: 'Setup temporary files' | |
run: | | |
echo "BASE_JSON=$(mktemp)" >> $GITHUB_ENV | |
echo "PATCH_JSON=$(mktemp)" >> $GITHUB_ENV | |
- name: 'Benchmark base' | |
run: | | |
git checkout -f ${{ github.event.pull_request.base.sha }} | |
npm install --loglevel error | |
if npm run size -w @stylexjs/scripts -- -o ${{ env.BASE_JSON }}; then | |
echo "Ran successfully on base branch" | |
else | |
echo "{}" > ${{ env.BASE_JSON }} # Empty JSON as default | |
echo "Benchmark script not found on base branch, using default values" | |
fi | |
- name: 'Benchmark patch' | |
run: | | |
git checkout -f ${{ github.event.pull_request.head.sha }} | |
npm install --loglevel error | |
npm run size -w @stylexjs/scripts -- -o ${{ env.PATCH_JSON }} | |
echo "Ran successfully on patch branch" | |
- name: 'Collect results' | |
id: collect | |
run: | | |
echo "table<<EOF" >> $GITHUB_OUTPUT | |
npm run size:compare -w @stylexjs/scripts -- ${{ env.BASE_JSON }} ${{ env.PATCH_JSON }} >> markdown | |
cat markdown >> $GITHUB_OUTPUT | |
echo "EOF" >> $GITHUB_OUTPUT | |
- name: 'Post comment' | |
uses: edumserrano/find-create-or-update-comment@v3 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body-includes: '<!-- workflow-benchmarks-size-data -->' | |
comment-author: 'github-actions[bot]' | |
body: | | |
<!-- workflow-benchmarks-size-data --> | |
### workflow: benchmarks/size | |
Comparison of minified (terser) and compressed (brotli) size results, measured in bytes. Smaller is better. | |
${{ steps.collect.outputs.table }} | |
edit-mode: replace |