22 lines
436 B
YAML
22 lines
436 B
YAML
name: Size limit
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- production
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
size:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CI_JOB_NUMBER: 1
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- uses: andresz1/size-limit-action@v1.8.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|