Skip to content

build(deps-dev): bump esbuild from 0.20.2 to 0.25.0 #18

build(deps-dev): bump esbuild from 0.20.2 to 0.25.0

build(deps-dev): bump esbuild from 0.20.2 to 0.25.0 #18

Workflow file for this run

name: check-dist
on:
push:
jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version-file: .node-version
- name: Install dependencies
run: npm ci
- name: Run checks
run: npm run check
- name: Build project
run: npm run build
- name: Compare expected and actual dist/index.js
run: |
if [ "$(git diff --ignore-space-at-eol dist/index.js | wc -l)" -gt "0" ]; then
echo "Detected outdated dist/index.js. Please run 'npm run build' and commit the changes."
git diff
exit 1
fi