Skip to content

chore(deps): bump the minor-updates group across 1 directory with 10 updates #675

chore(deps): bump the minor-updates group across 1 directory with 10 updates

chore(deps): bump the minor-updates group across 1 directory with 10 updates #675

Workflow file for this run

name: Size Limit
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
paths-ignore:
- "*.md"
- "packages/docs/**"
- "LICENSE"
permissions:
contents: read
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
size-limit:
name: Size Limit
if: ${{ github.event.pull_request.draft != true }}
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
package:
- packages/nadle
- packages/create-nadle
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
with:
run_install: false
- name: Setup Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Run Size Limit
uses: andresz1/size-limit-action@94bc357df29c36c8f8d50ea497c3e225c3c95d1d # v1.8.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
directory: ${{ matrix.package }}
package_manager: pnpm