build(deps-dev): bump esbuild from 0.25.12 to 0.28.2 in /sdk in the sdk-minor-and-patch group #11
This file contains hidden or 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: Changeset | |
| on: | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| check: | |
| name: Require changeset for sdk/shared | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci --legacy-peer-deps --ignore-scripts || npm install --legacy-peer-deps --ignore-scripts | |
| - name: Fail when a publishable package changes without a changeset | |
| env: | |
| CHANGESET_BASE: origin/${{ github.base_ref }} | |
| run: npm run check:changeset |