We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
size-limit-action
1 parent 09cd0aa commit 298388fCopy full SHA for 298388f
.github/workflows/size.yml
@@ -0,0 +1,25 @@
1
+name: size
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
8
+permissions:
9
+ pull-requests: write
10
11
+jobs:
12
+ size:
13
+ name: Check compressed size
14
+ runs-on: ubuntu-latest
15
+ env:
16
+ CI_JOB_NUMBER: 1
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - uses: EskiMojo14/size-limit-action@v2
20
+ with:
21
+ directory: .
22
+ github_token: ${{ secrets.GITHUB_TOKEN }}
23
+ build_script: build
24
+ package_manager: yarn
25
+ size_margin: non-zero
0 commit comments