Update dependency upgrades - non-major #1562
Workflow file for this run
This file contains 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: size | |
on: [pull_request] | |
jobs: | |
size: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
env: | |
CI_JOB_NUMBER: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: andresz1/size-limit-action@v1 | |
env: | |
# Disable strict Corepack checks for branches upgrading | |
# the version in packageManager in package.json | |
COREPACK_ENABLE_STRICT: 0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |