Skip to content

Bump npm @vercel/ncc from 0.44.1 to ^0.45.0 #2355

Bump npm @vercel/ncc from 0.44.1 to ^0.45.0

Bump npm @vercel/ncc from 0.44.1 to ^0.45.0 #2355

Workflow file for this run

name: github-action
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Install
run: npm install
- name: All
run: npm run all
# Check whether the dist/index.js was generated correctly
dist:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set Node.js 24.x
uses: actions/setup-node@v7.0.0
with:
node-version: 24.x
- name: Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Package
run: npm run package
- name: Compare the expected and actual dist/ directories
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi