Skip to content

build(deps): bump @babel/parser from 7.29.2 to 7.29.3 in the npm-production group across 1 directory #38

build(deps): bump @babel/parser from 7.29.2 to 7.29.3 in the npm-production group across 1 directory

build(deps): bump @babel/parser from 7.29.2 to 7.29.3 in the npm-production group across 1 directory #38

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."