Skip to content

build(deps): bump babel-plugin-react-compiler from 19.1.0-rc.1-rc-af1b7da-20250421 to 19.1.0-rc.3 #28

build(deps): bump babel-plugin-react-compiler from 19.1.0-rc.1-rc-af1b7da-20250421 to 19.1.0-rc.3

build(deps): bump babel-plugin-react-compiler from 19.1.0-rc.1-rc-af1b7da-20250421 to 19.1.0-rc.3 #28

Workflow file for this run

name: Check dist/
on:
pull_request:
branches: [main]
paths:
- "src/**"
- "package.json"
- "tsconfig.json"
permissions:
contents: read
jobs:
check-dist:
name: Verify dist/ is up to date
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install --frozen-lockfile
- name: Rebuild dist/
run: bun run build
- name: Check for uncommitted changes
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "::error::dist/ is out of date. Run 'bun run build' and commit the changes."
git diff --stat dist/
exit 1
fi
echo "dist/ is up to date."