mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-25 01:08:50 +01:00
21 lines
353 B
YAML
21 lines
353 B
YAML
|
name: Size limit
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
- production
|
||
|
permissions:
|
||
|
pull-requests: write
|
||
|
|
||
|
jobs:
|
||
|
size:
|
||
|
runs-on: ubuntu-latest
|
||
|
env:
|
||
|
CI_JOB_NUMBER: 1
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- uses: andresz1/size-limit-action@v1.8.0
|
||
|
with:
|
||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|